depot/third_party/nixpkgs/pkgs/development/python-modules/pagelabels/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

23 lines
553 B
Nix

{ lib, buildPythonPackage, fetchPypi, pdfrw }:
buildPythonPackage rec {
pname = "pagelabels";
version = "1.2.0";
src = fetchPypi {
inherit pname version;
sha256 = "07as5kzyvj66bfgvx8bph8gkyj6cgm4lhgxwb78bpdl4m8y8kpma";
};
buildInputs = [ pdfrw ];
# upstream doesn't contain tests
doCheck = false;
meta = with lib; {
description = "Python library to manipulate PDF page labels.";
homepage = "https://github.com/lovasoa/pagelabels-py";
maintainers = with maintainers; [ teto ];
license = licenses.gpl3;
};
}