python3Packages.bleach-allowlist: use finalAttrs

This commit is contained in:
Bruno BELANYI
2026-01-05 12:36:36 +00:00
parent 5d9499fa40
commit 8980ae451c
@@ -5,13 +5,13 @@
bleach,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "bleach-allowlist";
version = "1.0.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
hash = "sha256-VuIghgeaDmoxAK6Z5NuvIOslhUhlmOsOmUAIoRQo2ps=";
};
@@ -28,4 +28,4 @@ buildPythonPackage rec {
license = lib.licenses.bsd2;
maintainers = with lib.maintainers; [ ambroisie ];
};
}
})