2022-04-27 09:35:20 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
2022-07-14 12:49:19 +00:00
|
|
|
, fetchpatch
|
2022-04-27 09:35:20 +00:00
|
|
|
, buildPythonPackage
|
|
|
|
, pythonOlder
|
|
|
|
, fetchPypi
|
|
|
|
, isPyPy
|
2021-07-21 07:28:18 +00:00
|
|
|
, defusedxml, olefile, freetype, libjpeg, zlib, libtiff, libwebp, tcl, lcms2, tk, libX11
|
2021-02-19 19:06:45 +00:00
|
|
|
, libxcb, openjpeg, libimagequant, pyroma, numpy, pytestCheckHook
|
2022-03-10 19:12:11 +00:00
|
|
|
# for passthru.tests
|
|
|
|
, imageio, matplotlib, pilkit, pydicom, reportlab
|
2021-02-19 19:06:45 +00:00
|
|
|
}@args:
|
2020-06-18 07:06:33 +00:00
|
|
|
|
2021-02-19 19:06:45 +00:00
|
|
|
import ./generic.nix (rec {
|
2022-04-27 09:35:20 +00:00
|
|
|
pname = "pillow";
|
2022-06-26 10:26:21 +00:00
|
|
|
version = "9.1.1";
|
2020-06-18 07:06:33 +00:00
|
|
|
|
2022-04-27 09:35:20 +00:00
|
|
|
disabled = pythonOlder "3.7";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
2022-04-27 09:35:20 +00:00
|
|
|
pname = "Pillow";
|
|
|
|
inherit version;
|
2022-06-26 10:26:21 +00:00
|
|
|
sha256 = "sha256-dQJTmTm1PXVl89Edh8eOfskA08cpRdTuDi8lDVmDCaA=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2022-07-14 12:49:19 +00:00
|
|
|
patches = [
|
|
|
|
# Fix failing test with libtiff 4.4.0
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/python-pillow/Pillow/commit/40a918d274182b7d7c063d7797fb77d967982c4a.patch";
|
|
|
|
sha256 = "sha256-f8m3Xt3V3pHggK1JEc2tnPmrTVPFjfV4YJqwE1KM1pA=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2022-03-10 19:12:11 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit imageio matplotlib pilkit pydicom reportlab;
|
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-06-18 07:06:33 +00:00
|
|
|
homepage = "https://python-pillow.org/";
|
|
|
|
description = "The friendly PIL fork (Python Imaging Library)";
|
2020-04-24 23:36:52 +00:00
|
|
|
longDescription = ''
|
|
|
|
The Python Imaging Library (PIL) adds image processing
|
|
|
|
capabilities to your Python interpreter. This library
|
|
|
|
supports many file formats, and provides powerful image
|
|
|
|
processing and graphics capabilities.
|
|
|
|
'';
|
2021-03-09 03:18:52 +00:00
|
|
|
license = licenses.hpnd;
|
2021-02-19 19:06:45 +00:00
|
|
|
maintainers = with maintainers; [ goibhniu prikhi SuperSandro2000 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2021-02-19 19:06:45 +00:00
|
|
|
} // args )
|