34 lines
716 B
Nix
34 lines
716 B
Nix
{ 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 = [ ];
|
|
mainProgram = "pdfannots";
|
|
};
|
|
}
|