python3.pkgs.pagelabels: make pdfrw a (propagated) dependency (#477554)
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
})
|
||||
|
||||
Reference in New Issue
Block a user