python313Packages.pypck: 0.9.9 -> 0.9.10 (#487471)

This commit is contained in:
Fabian Affolter
2026-02-06 01:49:31 +00:00
committed by GitHub
@@ -9,20 +9,20 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pypck";
version = "0.9.9";
version = "0.9.10";
pyproject = true;
src = fetchFromGitHub {
owner = "alengwenus";
repo = "pypck";
tag = version;
hash = "sha256-EsPfPRYp75GML9JMoFPf5U8obh51LjIkg/FFRNkrEOY=";
tag = finalAttrs.version;
hash = "sha256-UTUYYnXY+Wak4cd0fH1V5rdkJ/Aet0DSCHfd+PL+SBo=";
};
postPatch = ''
echo "${version}" > VERSION
echo "${finalAttrs.version}" > VERSION
'';
build-system = [ setuptools ];
@@ -42,8 +42,8 @@ buildPythonPackage rec {
meta = {
description = "LCN-PCK library written in Python";
homepage = "https://github.com/alengwenus/pypck";
changelog = "https://github.com/alengwenus/pypck/releases/tag/${src.tag}";
changelog = "https://github.com/alengwenus/pypck/releases/tag/${finalAttrs.src.tag}";
license = lib.licenses.epl20;
maintainers = with lib.maintainers; [ fab ];
};
}
})