biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / development / python-modules / pypdf3 / default.nix
blobf611eb5ae0b9f5240451f8a2805ee2f96dcc4b47
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   glibcLocales,
6   python,
7   tqdm,
8 }:
10 buildPythonPackage rec {
11   pname = "pypdf3";
12   version = "1.0.6";
13   format = "setuptools";
15   src = fetchPypi {
16     pname = "PyPDF3";
17     inherit version;
18     hash = "sha256-yUbzJzQZ43JY415yJz9JkEqxVyPYenYcERXvmXmfjF8=";
19   };
21   LC_ALL = "en_US.UTF-8";
22   buildInputs = [ glibcLocales ];
24   checkPhase = ''
25     ${python.interpreter} -m unittest tests/*.py
26   '';
28   propagatedBuildInputs = [ tqdm ];
30   meta = with lib; {
31     description = "Pure-Python library built as a PDF toolkit";
32     homepage = "https://github.com/sfneal/PyPDF3";
33     license = licenses.bsd3;
34     maintainers = with maintainers; [ ambroisie ];
35   };