python3.pkgs.pagelabels: make pdfrw a (propagated) dependency (#477554)

This commit is contained in:
Matthieu Coudron
2026-01-06 21:32:24 +00:00
committed by GitHub
@@ -5,17 +5,19 @@
pdfrw,
}:
buildPythonPackage rec {
buildPythonPackage (finalAttrs: {
pname = "pagelabels";
version = "1.2.1";
format = "setuptools";
src = fetchPypi {
inherit pname version;
inherit (finalAttrs) pname version;
sha256 = "sha256-GAEyhECToKnIWBxnYTSOsYKZBjl50b/82mZ68i8I2ug=";
};
buildInputs = [ pdfrw ];
dependencies = [
pdfrw
];
# upstream doesn't contain tests
doCheck = false;
@@ -26,4 +28,4 @@ buildPythonPackage rec {
maintainers = with lib.maintainers; [ teto ];
license = lib.licenses.gpl3;
};
}
})