pdftitle: 0.15 -> 0.16

This commit is contained in:
dansbandit 2024-11-17 20:03:38 +01:00
parent a41e0a3109
commit e7138f8854

View File

@ -2,34 +2,31 @@
lib,
fetchFromGitHub,
python3Packages,
pdfminer
pdfminer,
}:
python3Packages.buildPythonApplication rec {
pname = "pdftitle";
version = "0.15";
version = "0.16";
pyproject = true;
src = fetchFromGitHub {
owner = "metebalci";
repo = "pdftitle";
rev = "v${version}";
hash = "sha256-IEctzvNHlGYUMl3jfTVNinmfMviVQ9q15OZtRN1mhZc=";
hash = "sha256-s5OrZQogFJEKbaGoPHti7UcpqXhxrtIAC2Hd+clDbD4=";
};
build-system = with python3Packages; [
setuptools
];
build-system = with python3Packages; [ setuptools ];
dependencies = with python3Packages; [
pdfminer
];
dependencies = with python3Packages; [ pdfminer ];
pythonImportsCheck = [ "pdftitle" ];
meta = {
description = "Utility to extract the title from a PDF file";
homepage = "https://github.com/metebalci/pdftitle";
changelog = "https://github.com/metebalci/pdftitle/blob/v${version}/CHANGELOG.md";
license = lib.licenses.gpl3Only;
maintainers = with lib.maintainers; [ dansbandit ];
mainProgram = "pdftitle";