2022-04-27 09:35:20 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, pythonOlder
|
|
|
|
, fetchPypi
|
2023-08-04 22:07:22 +00:00
|
|
|
, fetchpatch
|
2022-04-27 09:35:20 +00:00
|
|
|
, isPyPy
|
2022-10-30 15:09:59 +00:00
|
|
|
, defusedxml, olefile, freetype, libjpeg, zlib, libtiff, libwebp, libxcrypt, 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";
|
2023-08-04 22:07:22 +00:00
|
|
|
version = "9.5.0";
|
2022-12-17 10:02:37 +00:00
|
|
|
format = "setuptools";
|
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;
|
2023-08-04 22:07:22 +00:00
|
|
|
hash = "sha256-v1SEedM2cm16Ds6252fhefveN4M65CeUYCYxoHDWMPE=";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
2023-08-04 22:07:22 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
# Fixed type handling for include and lib directories; Remove with 10.0.0
|
|
|
|
url = "https://github.com/python-pillow/Pillow/commit/0ec0a89ead648793812e11739e2a5d70738c6be5.patch";
|
|
|
|
hash = "sha256-m5R5fLflnbJXbRxFlTjT2X3nKdC05tippMoJUDsJmy0=";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
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;
|
2023-08-04 22:07:22 +00:00
|
|
|
maintainers = with maintainers; [ goibhniu prikhi ];
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
2021-02-19 19:06:45 +00:00
|
|
|
} // args )
|