about summary refs log tree commit diff
path: root/pkgs/by-name/pd/pdfannots/package.nix
blob: 14672b371724980e5883a3a0433d7762cd6d5433 (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
{ lib, python3, fetchFromGitHub }:

python3.pkgs.buildPythonApplication rec {
  pname = "pdfannots";
  version = "0.4";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "0xabu";
    repo = "pdfannots";
    rev = "v${version}";
    hash = "sha256-C0Ss6kZvPx0hHnpBKquEolxeuTfjshhSBSIDXcCKtM8=";
  };

  nativeBuildInputs = [
    python3.pkgs.setuptools
  ];

  propagatedBuildInputs = [
    python3.pkgs.pdfminer-six
  ];

  pythonImportsCheck = [
    "pdfannots"
  ];

  meta = with lib; {
    description = "Extracts and formats text annotations from a PDF file";
    homepage = "https://github.com/0xabu/pdfannots";
    license = licenses.mit;
    maintainers = [ maintainers.marsam ];
    mainProgram = "pdfannots";
  };
}