Merge pull request #307098 from r-ryantm/auto-update/cilium-cli
[NixPkgs.git] / pkgs / development / python-modules / pagelabels / default.nix
blob44b246869aa5f58e9d99122bcc9a38cedb1d32be
1 { lib, buildPythonPackage, fetchPypi, pdfrw }:
3 buildPythonPackage rec {
4   pname = "pagelabels";
5   version = "1.2.0";
6   format = "setuptools";
8   src = fetchPypi {
9     inherit pname version;
10     sha256 = "07as5kzyvj66bfgvx8bph8gkyj6cgm4lhgxwb78bpdl4m8y8kpma";
11   };
13   buildInputs = [ pdfrw ];
15   # upstream doesn't contain tests
16   doCheck = false;
18   meta = with lib; {
19     description = "Python library to manipulate PDF page labels.";
20     homepage = "https://github.com/lovasoa/pagelabels-py";
21     maintainers = with maintainers; [ teto ];
22     license = licenses.gpl3;
23   };