python3Packages.pysmappee: use finalAttrs

This commit is contained in:
Sigmanificient
2026-07-18 23:57:13 +02:00
parent 8cd6028f2b
commit 9ad186f4bc
@@ -11,7 +11,7 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pysmappee";
version = "0.2.29";
pyproject = true;
@@ -19,7 +19,7 @@ buildPythonPackage rec {
src = fetchFromGitHub {
owner = "smappee";
repo = "pysmappee";
rev = version;
tag = finalAttrs.version;
hash = "sha256-Ffi55FZsZUKDcS4qV46NpRK3VP6axzrL2BO+hYW7J9E=";
};
@@ -45,4 +45,4 @@ buildPythonPackage rec {
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ fab ];
};
}
})