2022-01-13 20:06:32 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, isPy27
|
|
|
|
, fetchPypi
|
2022-02-10 20:34:41 +00:00
|
|
|
, fetchpatch
|
2022-01-13 20:06:32 +00:00
|
|
|
, pikepdf
|
|
|
|
, pillow
|
|
|
|
, stdenv
|
|
|
|
, exiftool
|
|
|
|
, ghostscript
|
|
|
|
, imagemagick
|
|
|
|
, mupdf
|
|
|
|
, netpbm
|
|
|
|
, numpy
|
|
|
|
, poppler_utils
|
|
|
|
, pytestCheckHook
|
|
|
|
, scipy
|
|
|
|
}:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
buildPythonPackage rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "img2pdf";
|
2021-10-28 06:52:43 +00:00
|
|
|
version = "0.4.3";
|
2020-07-18 16:06:22 +00:00
|
|
|
disabled = isPy27;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-10-28 06:52:43 +00:00
|
|
|
sha256 = "sha256-jlHFBD76lddRSBtRYHGgBvh8KkBZlhqaxD7COJFd4J8=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-02-10 20:34:41 +00:00
|
|
|
patches = [
|
|
|
|
# Disable tests broken by Pillow 9.0.0
|
|
|
|
# https://gitlab.mister-muffin.de/josch/img2pdf/issues/130#issuecomment-586
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://salsa.debian.org/debian/img2pdf/-/raw/f77fefc81e7c4b235c47ae6777d222d391c59536/debian/patches/pillow9";
|
|
|
|
sha256 = "sha256-8giZCuv5PzSbrBQqslNqiLOhgxbg3LsdBVwt+DWnvh4=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
propagatedBuildInputs = [
|
2020-09-25 04:45:31 +00:00
|
|
|
pikepdf
|
2020-04-24 23:36:52 +00:00
|
|
|
pillow
|
|
|
|
];
|
|
|
|
|
2022-01-13 20:06:32 +00:00
|
|
|
# https://gitlab.mister-muffin.de/josch/img2pdf/issues/128
|
|
|
|
doCheck = !stdenv.isAarch64;
|
|
|
|
|
|
|
|
checkInputs = [
|
|
|
|
exiftool
|
|
|
|
ghostscript
|
|
|
|
imagemagick
|
|
|
|
mupdf
|
|
|
|
netpbm
|
|
|
|
numpy
|
|
|
|
poppler_utils
|
|
|
|
pytestCheckHook
|
|
|
|
scipy
|
|
|
|
];
|
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
export img2pdfprog="$out/bin/img2pdf"
|
|
|
|
'';
|
|
|
|
|
|
|
|
disabledTests = [
|
|
|
|
"test_tiff_rgb"
|
|
|
|
];
|
|
|
|
|
|
|
|
pythonImportsCheck = [ "img2pdf" ];
|
2021-02-13 14:23:35 +00:00
|
|
|
|
2020-07-18 16:06:22 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "Convert images to PDF via direct JPEG inclusion";
|
|
|
|
homepage = "https://gitlab.mister-muffin.de/josch/img2pdf";
|
|
|
|
license = licenses.lgpl2;
|
2022-01-13 20:06:32 +00:00
|
|
|
maintainers = with maintainers; [ veprbl dotlambda ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|