mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-01 11:22:58 +00:00
python3Packages.pypdf3: init at 1.0.5
This commit is contained in:
parent
b99a500a04
commit
fb81b07672
36
pkgs/development/python-modules/pypdf3/default.nix
Normal file
36
pkgs/development/python-modules/pypdf3/default.nix
Normal file
@ -0,0 +1,36 @@
|
||||
{ lib
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, glibcLocales
|
||||
, python
|
||||
, tqdm
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pypdf3";
|
||||
version = "1.0.5";
|
||||
|
||||
src = fetchPypi {
|
||||
pname = "PyPDF3";
|
||||
inherit version;
|
||||
sha256 = "sha256-DGKpR4p3z8tw4gKi5Hmj09svysD3Hkn4NklhgROmEAU=";
|
||||
};
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
@ -6305,6 +6305,8 @@ in {
|
||||
|
||||
pypdf2 = callPackage ../development/python-modules/pypdf2 { };
|
||||
|
||||
pypdf3 = callPackage ../development/python-modules/pypdf3 { };
|
||||
|
||||
pypeg2 = callPackage ../development/python-modules/pypeg2 { };
|
||||
|
||||
pyperclip = callPackage ../development/python-modules/pyperclip { };
|
||||
|
Loading…
Reference in New Issue
Block a user