nixpkgs/pkgs/development/python-modules/pypdf3/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

37 lines
681 B
Nix
Raw Normal View History

2021-06-27 01:47:42 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, glibcLocales
, python
, tqdm
}:
buildPythonPackage rec {
pname = "pypdf3";
2022-03-02 22:42:16 +01:00
version = "1.0.6";
2021-06-27 01:47:42 +02:00
src = fetchPypi {
pname = "PyPDF3";
inherit version;
2022-03-02 22:42:16 +01:00
sha256 = "sha256-yUbzJzQZ43JY415yJz9JkEqxVyPYenYcERXvmXmfjF8=";
2021-06-27 01:47:42 +02:00
};
LC_ALL = "en_US.UTF-8";
buildInputs = [ glibcLocales ];
checkPhase = ''
${python.interpreter} -m unittest tests/*.py
'';
propagatedBuildInputs = [
tqdm
];
meta = with lib; {
description = "A Pure-Python library built as a PDF toolkit";
homepage = "https://github.com/sfneal/PyPDF3";
license = licenses.bsd3;
maintainers = with maintainers; [ ambroisie ];
};
}