Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pypdf2 / default.nix
blob26d27f4455afdc0c31c55697fd3b116243f641cd
1 { lib
2 , buildPythonPackage
3 , fetchPypi
4 , glibcLocales
5 , python
6 , isPy3k
7 }:
9 buildPythonPackage rec {
10   pname = "PyPDF2";
11   version = "1.26.0";
13   src = fetchPypi {
14     inherit pname version;
15     sha256 = "11a3aqljg4sawjijkvzhs3irpw0y67zivqpbjpm065ha5wpr13z2";
16   };
18   LC_ALL = "en_US.UTF-8";
19   buildInputs = [ glibcLocales ];
21   checkPhase = ''
22     ${python.interpreter} -m unittest discover -s Tests
23   '';
25   # Tests broken on Python 3.x
26   doCheck = !(isPy3k);
28   meta = with lib; {
29     description = "A Pure-Python library built as a PDF toolkit";
30     homepage = "http://mstamy2.github.com/PyPDF2/";
31     license = licenses.bsd3;
32     maintainers = with maintainers; [ desiderius vrthra ];
33   };