summary refs log tree commit diff
path: root/pkgs/development/python-modules/pypdf3/default.nix
blob: a4273497e3bc4913c410e6953b735c5bacc00a5f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{ lib
, buildPythonPackage
, fetchPypi
, glibcLocales
, python
, tqdm
}:

buildPythonPackage rec {
  pname = "pypdf3";
  version = "1.0.6";

  src = fetchPypi {
    pname = "PyPDF3";
    inherit version;
    sha256 = "sha256-yUbzJzQZ43JY415yJz9JkEqxVyPYenYcERXvmXmfjF8=";
  };

  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 ];
  };
}