f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
40 lines
816 B
Nix
40 lines
816 B
Nix
{
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
flit-core,
|
|
lib,
|
|
pythonOlder,
|
|
typing-extensions,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pypdf2";
|
|
version = "3.0.1";
|
|
|
|
pyproject = true;
|
|
|
|
src = fetchPypi {
|
|
pname = "PyPDF2";
|
|
inherit version;
|
|
hash = "sha256-p0QI9pumJx9xuTUu9O0D3FOjGqQE0ptdMfU7/s/uFEA=";
|
|
};
|
|
|
|
nativeBuildInputs = [ flit-core ];
|
|
|
|
dependencies = lib.optionals (pythonOlder "3.10") [ typing-extensions ];
|
|
|
|
# no test
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "PyPDF2" ];
|
|
|
|
meta = with lib; {
|
|
description = "Pure-Python library built as a PDF toolkit";
|
|
homepage = "https://pypdf2.readthedocs.io/";
|
|
changelog = "https://github.com/py-pdf/PyPDF2/raw/${version}/CHANGELOG.md";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [
|
|
desiderius
|
|
];
|
|
};
|
|
}
|