Merge pull request #191781 from r-ryantm/auto-update/python310Packages.pypdf2

python310Packages.pypdf2: 2.10.7 -> 2.10.9
This commit is contained in:
Mario Rodas
2022-09-18 11:58:00 -05:00
committed by GitHub
@@ -5,16 +5,15 @@
, glibcLocales
, typing-extensions
, unittestCheckHook
, isPy3k
}:
buildPythonPackage rec {
pname = "PyPDF2";
version = "2.10.7";
version = "2.10.9";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-PHkw2fK6JdybGC2cIpOtbeOtryo5NMfoxBeGVa6Mejk=";
sha256 = "sha256-8tpSVPBU6O+BDFMf4Rr28KQ2or4VmF7g0oho2GmOWj8=";
};
LC_ALL = "en_US.UTF-8";
@@ -24,14 +23,16 @@ buildPythonPackage rec {
typing-extensions
];
# Tests broken on Python 3.x
#doCheck = !(isPy3k);
checkInputs = [ unittestCheckHook ];
pythonImportsCheck = [
"PyPDF2"
];
meta = with lib; {
description = "A Pure-Python library built as a PDF toolkit";
homepage = "http://mstamy2.github.com/PyPDF2/";
homepage = "https://github.com/py-pdf/PyPDF2";
changelog = "https://github.com/py-pdf/PyPDF2/raw/${version}/CHANGELOG.md";
license = licenses.bsd3;
maintainers = with maintainers; [ desiderius vrthra ];
};