pythonPackages.pdfrw: init at 0.4.0
This commit is contained in:
parent
4fdc455543
commit
c0a498b5d5
21
pkgs/development/python-modules/pdfrw/default.nix
Normal file
21
pkgs/development/python-modules/pdfrw/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -4896,6 +4896,8 @@ in {
|
|||||||
|
|
||||||
pdfkit = callPackage ../development/python-modules/pdfkit { };
|
pdfkit = callPackage ../development/python-modules/pdfkit { };
|
||||||
|
|
||||||
|
pdfrw = callPackage ../development/python-modules/pdfrw { };
|
||||||
|
|
||||||
periodictable = callPackage ../development/python-modules/periodictable { };
|
periodictable = callPackage ../development/python-modules/periodictable { };
|
||||||
|
|
||||||
pgcli = callPackage ../development/tools/database/pgcli {};
|
pgcli = callPackage ../development/tools/database/pgcli {};
|
||||||
|
Loading…
Reference in New Issue
Block a user