depot/third_party/nixpkgs/pkgs/development/python-modules/pypdf2/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

35 lines
698 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, glibcLocales
, python
, isPy3k
}:
buildPythonPackage rec {
pname = "PyPDF2";
version = "1.26.0";
src = fetchPypi {
inherit pname version;
sha256 = "11a3aqljg4sawjijkvzhs3irpw0y67zivqpbjpm065ha5wpr13z2";
};
LC_ALL = "en_US.UTF-8";
buildInputs = [ glibcLocales ];
checkPhase = ''
${python.interpreter} -m unittest discover -s Tests
'';
# Tests broken on Python 3.x
doCheck = !(isPy3k);
meta = with lib; {
description = "A Pure-Python library built as a PDF toolkit";
homepage = "http://mstamy2.github.com/PyPDF2/";
license = licenses.bsd3;
maintainers = with maintainers; [ desiderius vrthra ];
};
}