Merge pull request #278823 from dansbandit/pdftitle

pdftitle: init at 0.11
This commit is contained in:
Aleksana 2024-06-24 12:24:19 +08:00 committed by GitHub
commit f4d4d2ac34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,37 @@
{
lib,
fetchFromGitHub,
python3Packages,
pdfminer
}:
python3Packages.buildPythonApplication rec {
pname = "pdftitle";
version = "0.11";
pyproject = true;
src = fetchFromGitHub {
owner = "metebalci";
repo = "pdftitle";
rev = "v${version}";
hash = "sha256-kj1pJpyWRgEaAADF6YqzdD8QnJ6iu0eXFMR4NGM4/+Y=";
};
build-system = with python3Packages; [
setuptools
];
dependencies = with python3Packages; [
pdfminer
];
pythonImportsCheck = [ "pdftitle" ];
meta = {
description = "Utility to extract the title from a PDF file";
homepage = "https://github.com/metebalci/pdftitle";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ dansbandit ];
mainProgram = "pdftitle";
};
}