Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 20.09 482 B view raw
1{ stdenv 2, buildPythonPackage 3, fetchPypi 4, isPy3k 5}: 6 7buildPythonPackage rec { 8 pname = "pyPdf"; 9 version = "1.13"; 10 11 src = fetchPypi { 12 inherit pname version; 13 sha256 = "3aede4c3c9c6ad07c98f059f90db0b09ed383f7c791c46100f649e1cabda0e3b"; 14 }; 15 16 # Not supported. Package is no longer maintained. 17 disabled = isPy3k; 18 19 meta = with stdenv.lib; { 20 description = "Pure-Python PDF toolkit"; 21 homepage = "http://pybrary.net/pyPdf/"; 22 license = licenses.bsd3; 23 }; 24 25}