python3Packages.thriftpy2: 0.7.0 -> 0.7.1 (#560464)

This commit is contained in:
Fabian Affolter
2026-09-07 15:09:41 +00:00
committed by GitHub

View File

@@ -9,16 +9,16 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "thriftpy2";
version = "0.7.0";
version = "0.7.1";
pyproject = true;
src = fetchFromGitHub {
owner = "Thriftpy";
repo = "thriftpy2";
tag = "v${version}";
hash = "sha256-vbNCPYWO/D+7/UJU/0ATdLzZ4lIPOKeBZ1sgWCdxx/c=";
tag = "v${finalAttrs.version}";
hash = "sha256-mpCPE1bDE4bpJMwC71QW/4aJs/82/Oj+jYloXOmZyGA=";
};
build-system = [ setuptools ];
@@ -33,6 +33,7 @@ buildPythonPackage rec {
optional-dependencies = {
aiohttp = [ aiohttp ];
};
# Not all needed files seems to be present
doCheck = false;
@@ -41,8 +42,8 @@ buildPythonPackage rec {
meta = {
description = "Python module for Apache Thrift";
homepage = "https://github.com/Thriftpy/thriftpy2";
changelog = "https://github.com/Thriftpy/thriftpy2/releases/tag/${src.tag}";
changelog = "https://github.com/Thriftpy/thriftpy2/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})