pdftitle: 0.15 -> 0.16 (#356785)
This commit is contained in:
commit
0c99d11cbd
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user