python3Packages.types-decorator: migrate to finalAttrs

This commit is contained in:
Fabian Affolter
2026-07-10 12:08:35 +02:00
committed by GitHub
parent a6ed27fb9e
commit 1207148e89
@@ -5,14 +5,14 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "types-decorator";
version = "5.2.0.20260519";
pyproject = true;
src = fetchPypi {
pname = "types_decorator";
inherit version;
inherit (finalAttrs) version;
hash = "sha256-tbI7Lw0RwGdIeAaX00XIpoT8LQx1PwjugGNmDZ16I9k=";
};
@@ -29,4 +29,4 @@ buildPythonPackage rec {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
})