about summary refs log tree commit diff
path: root/pkgs/development/python-modules/pypdf2/default.nix
blob: d40c07114504fb1a2fde94e5be42ca437d43caad (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
37
38
39
40
41
{
  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
      vrthra
    ];
  };
}