python3Packages.types-docutils: migrate to finalAttrs

This commit is contained in:
Fabian Affolter
2026-07-18 17:46:08 +02:00
committed by GitHub
parent eae70df6d7
commit 1c6d35a8b6
@@ -5,14 +5,14 @@
setuptools,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "types-docutils";
version = "0.22.3.20260712";
pyproject = true;
src = fetchPypi {
pname = "types_docutils";
inherit version;
inherit (finalAttrs) version;
hash = "sha256-vtVKUBNsjnYTwD7hxR65WLQnVJFd+DU13jVrl0ygWHc=";
};
@@ -35,4 +35,4 @@ buildPythonPackage rec {
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ fab ];
};
}
})