pythonPackages.pagelabels: init at 1.2.0

Used in termpdf I want to package.
This commit is contained in:
Matthieu Coudron 2019-09-26 15:56:32 +09:00
parent c0a498b5d5
commit c881dd5e68
2 changed files with 25 additions and 0 deletions

View File

@ -0,0 +1,23 @@
{ stdenv, 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 stdenv.lib; {
description = "Python library to manipulate PDF page labels.";
homepage = "https://github.com/lovasoa/pagelabels-py";
maintainers = with maintainers; [ teto ];
license = licenses.gpl3;
};
}

View File

@ -4825,6 +4825,8 @@ in {
paho-mqtt = callPackage ../development/python-modules/paho-mqtt { };
pagelabels = callPackage ../development/python-modules/pagelabels { };
pamqp = callPackage ../development/python-modules/pamqp { };
parsedatetime = callPackage ../development/python-modules/parsedatetime { };