Merge pull request #289632 from marsam/add-pdfannots
pdfannots: init at 0.4
This commit is contained in:
commit
3599d7c0e3
34
pkgs/by-name/pd/pdfannots/package.nix
Normal file
34
pkgs/by-name/pd/pdfannots/package.nix
Normal file
@ -0,0 +1,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";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user