pythonPackages.pdfrw: init at 0.4.0

This commit is contained in:
Matthieu Coudron 2019-09-26 15:57:08 +09:00
parent 4fdc455543
commit c0a498b5d5
2 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,21 @@
{ stdenv, buildPythonPackage, fetchPypi }:
buildPythonPackage rec {
pname = "pdfrw";
version = "0.4";
src = fetchPypi {
inherit pname version;
sha256 = "1x1yp63lg3jxpg9igw8lh5rc51q353ifsa1bailb4qb51r54kh0d";
};
# tests require the extra download of github.com/pmaupin/static_pdfs
doCheck = false;
meta = with stdenv.lib; {
description = "pdfrw is a pure Python library that reads and writes PDFs.";
homepage = "https://github.com/pmaupin/pdfrw";
maintainers = with maintainers; [ teto ];
license = licenses.mit;
};
}

View File

@ -4896,6 +4896,8 @@ in {
pdfkit = callPackage ../development/python-modules/pdfkit { };
pdfrw = callPackage ../development/python-modules/pdfrw { };
periodictable = callPackage ../development/python-modules/periodictable { };
pgcli = callPackage ../development/tools/database/pgcli {};