Files
nixpkgs/pkgs/development/python-modules/fpdf2/default.nix
2025-09-07 03:08:30 +00:00

70 lines
1.4 KiB
Nix

{
lib,
buildPythonPackage,
camelot,
defusedxml,
fetchFromGitHub,
fonttools,
lxml,
pikepdf,
pillow,
pytest-cov-stub,
pytestCheckHook,
qrcode,
setuptools,
uharfbuzz,
}:
buildPythonPackage rec {
pname = "fpdf2";
version = "2.8.4";
pyproject = true;
src = fetchFromGitHub {
owner = "py-pdf";
repo = "fpdf2";
tag = version;
hash = "sha256-MD1ci80FBX8pVspMPqAX2UaTjymWHReI3lA9J4ZiBio=";
};
build-system = [ setuptools ];
dependencies = [
defusedxml
fonttools
pillow
];
nativeCheckInputs = [
camelot
lxml
pikepdf
pytest-cov-stub
pytestCheckHook
qrcode
uharfbuzz
];
disabledTestPaths = [
"test/table/test_table_extraction.py" # tabula-py not packaged yet
"test/signing/test_sign.py" # endesive not packaged yet
];
disabledTests = [
"test_png_url" # tries to download file
"test_page_background" # tries to download file
"test_share_images_cache" # uses timing functions
"test_bidi_character" # tries to download file
"test_bidi_conformance" # tries to download file
"test_insert_jpg_jpxdecode" # JPEG2000 is broken
];
meta = {
homepage = "https://github.com/py-pdf/fpdf2";
description = "Simple PDF generation for Python";
changelog = "https://github.com/py-pdf/fpdf2/blob/${src.tag}/CHANGELOG.md";
license = lib.licenses.lgpl3Only;
maintainers = with lib.maintainers; [ jfvillablanca ];
};
}