Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / python-modules / pagelabels / default.nix
blobc17f0ad60dd5289c4e7e15571d799b566531b283
1 { lib, buildPythonPackage, fetchPypi, pdfrw }:
3 buildPythonPackage rec {
4   pname = "pagelabels";
5   version = "1.2.0";
7   src = fetchPypi {
8     inherit pname version;
9     sha256 = "07as5kzyvj66bfgvx8bph8gkyj6cgm4lhgxwb78bpdl4m8y8kpma";
10   };
12   buildInputs = [ pdfrw ];
14   # upstream doesn't contain tests
15   doCheck = false;
17   meta = with lib; {
18     description = "Python library to manipulate PDF page labels.";
19     homepage = "https://github.com/lovasoa/pagelabels-py";
20     maintainers = with maintainers; [ teto ];
21     license = licenses.gpl3;
22   };