python3Packages.img2pdf: fix tests with Pillow 9

This commit is contained in:
Johannes Schleifenbaum 2022-02-04 12:48:06 +01:00
parent eee549ab8b
commit 4c65928e00
No known key found for this signature in database
GPG key ID: 059093B1A278BCD0

View file

@ -2,6 +2,7 @@
, buildPythonPackage
, isPy27
, fetchPypi
, fetchpatch
, pikepdf
, pillow
, stdenv
@ -26,6 +27,15 @@ buildPythonPackage rec {
sha256 = "sha256-jlHFBD76lddRSBtRYHGgBvh8KkBZlhqaxD7COJFd4J8=";
};
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=";
})
];
propagatedBuildInputs = [
pikepdf
pillow