tocpdf: 0.3.3 -> 0.3.9 (#347968)

This commit is contained in:
Peder Bergebakken Sundt 2024-10-19 23:07:47 +02:00 committed by GitHub
commit da40795136
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,18 +1,19 @@
{
lib,
python3Packages,
fetchPypi,
fetchFromGitHub,
}:
python3Packages.buildPythonApplication rec {
pname = "tocpdf";
version = "0.3.3";
version = "0.3.9";
pyproject = true;
src = fetchPypi {
pname = "tocPDF";
inherit version;
hash = "sha256-B+UcvyjWceVErf1uDyGGTGwKBCGHmSOF19Vbk15cPp8=";
src = fetchFromGitHub {
owner = "kszenes";
repo = "tocPDF";
rev = "v${version}";
hash = "sha256-RaNMhEgJ2pSL9BvK1d2Z8AsUPhARaRtEiCnt/2E2uNs=";
};
build-system = with python3Packages; [
@ -27,14 +28,21 @@ python3Packages.buildPythonApplication rec {
tqdm
];
# no test
doCheck = false;
nativeCheckInputs = with python3Packages; [
pytestCheckHook
];
disabledTests = [
# touches network
"test_read_toc"
];
pythonImportsCheck = [ "tocPDF" ];
meta = {
description = "Automatic CLI tool for generating outline of PDFs based on the table of contents";
homepage = "https://github.com/kszenes/tocPDF";
changelog = "https://github.com/kszenes/tocPDF/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ dansbandit ];
mainProgram = "tocPDF";