summary refs log tree commit diff
path: root/pkgs/development/python-modules/pdfx/default.nix
blob: a8c110fdba70a276eea625379550fcb3326b9146 (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
{ lib, buildPythonPackage, fetchFromGitHub, pdfminer, chardet, pytest }:

buildPythonPackage rec {
  pname = "pdfx";
  version = "1.3.1";

  src = fetchFromGitHub {
    owner = "metachris";
    repo = "pdfx";
    rev = "v${version}";
    sha256 = "1183k4h5qdf8y0imbir9ja3yzzsvdmqgbv3bi6dnkgr1wy2xfr0v";
  };

  # Remove after https://github.com/metachris/pdfx/pull/28
  prePatch = ''
    sed -i -e "s|pdfminer2|pdfminer.six|" setup.py
  '';

  propagatedBuildInputs = [ pdfminer chardet ];

  checkInputs = [ pytest ];

  checkPhase = ''
    py.test
  '';

  meta = with lib; {
    inherit (src.meta) homepage;
    description = "Extract references (pdf, url, doi, arxiv) and metadata from a PDF";
    license = licenses.asl20;
    maintainers = with maintainers; [ marsam ];
  };
}