python3Packages.sigparse: use finalAttrs

This commit is contained in:
Sigmanificient
2026-01-07 02:20:09 +01:00
parent e3da488bde
commit c3a23a445f
@@ -7,7 +7,7 @@
fetchpatch,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "sigparse";
version = "3.0.0";
pyproject = true;
@@ -15,7 +15,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "Lunarmagpie";
repo = "sigparse";
tag = "v${version}";
tag = "v${finalAttrs.version}";
hash = "sha256-VzWDqplYgwrJXXd5IUzEIp0YRuofybqmGrNKPaGqQFM=";
};
@@ -38,4 +38,4 @@ buildPythonPackage rec {
homepage = "https://github.com/Lunarmagpie/sigparse";
maintainers = with lib.maintainers; [ sigmanificient ];
};
}
})