python3Packages.pydy: use finalAttrs

This commit is contained in:
Sigmanificient
2026-01-07 02:19:26 +01:00
parent 94f78ac27f
commit 5a32839a0f
@@ -11,13 +11,13 @@
nix-update-script,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pydy";
version = "0.8.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-G3iqMzy/W3ctz/c4T3LqYyTTMVbly1GMkmMLi96mzMc=";
};
@@ -44,4 +44,4 @@ buildPythonPackage rec {
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ sigmanificient ];
};
}
})