python3Packages.fields: use finalAttrs

This commit is contained in:
Sigmanificient
2026-07-21 01:37:51 +02:00
parent 52325bf865
commit 72dfbeef2f

View File

@@ -5,13 +5,13 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "fields";
version = "5.0.0";
pyproject = true;
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-MdSqA9jUTjXfE8Qx3jUTaZfwR6kkpZfYT3vCCeG+Vyc=";
};
@@ -25,4 +25,4 @@ buildPythonPackage rec {
license = lib.licenses.bsd2;
maintainers = [ lib.maintainers.sheepforce ];
};
}
})