2022-04-09 19:58:53 +00:00
|
|
|
{ lib
|
|
|
|
, stdenv
|
|
|
|
, buildPythonPackage
|
|
|
|
, pythonOlder
|
|
|
|
, fetchPypi
|
|
|
|
, isPyPy
|
2022-10-07 01:55:32 +00:00
|
|
|
, defusedxml, olefile, freetype, libjpeg, zlib, libtiff, libwebp, libxcrypt, tcl, lcms2, tk, libX11
|
2021-01-01 05:47:22 +00:00
|
|
|
, libxcb, openjpeg, libimagequant, pyroma, numpy, pytestCheckHook
|
2022-02-12 19:42:34 +00:00
|
|
|
# for passthru.tests
|
|
|
|
, imageio, matplotlib, pilkit, pydicom, reportlab
|
2021-01-01 05:43:07 +00:00
|
|
|
}@args:
|
2020-06-01 19:20:13 +00:00
|
|
|
|
2021-01-01 05:43:07 +00:00
|
|
|
import ./generic.nix (rec {
|
2022-04-09 19:58:53 +00:00
|
|
|
pname = "pillow";
|
2023-02-01 22:07:31 +00:00
|
|
|
version = "9.4.0";
|
2022-11-12 13:32:26 +00:00
|
|
|
format = "setuptools";
|
2020-06-01 19:20:13 +00:00
|
|
|
|
2022-04-09 19:58:53 +00:00
|
|
|
disabled = pythonOlder "3.7";
|
2017-07-12 10:28:55 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
2022-04-09 19:58:53 +00:00
|
|
|
pname = "Pillow";
|
|
|
|
inherit version;
|
2023-02-01 22:07:31 +00:00
|
|
|
hash = "sha256-ocLXeARI65P7zDeJvzkWqlcg2ULjeUX0BWaAMX8c0j4=";
|
2017-07-12 10:28:55 +00:00
|
|
|
};
|
|
|
|
|
2022-02-12 19:42:34 +00:00
|
|
|
passthru.tests = {
|
|
|
|
inherit imageio matplotlib pilkit pydicom reportlab;
|
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-06-06 09:21:00 +00:00
|
|
|
homepage = "https://python-pillow.org/";
|
|
|
|
description = "The friendly PIL fork (Python Imaging Library)";
|
2017-07-12 10:28:55 +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-02-03 17:44:05 +00:00
|
|
|
license = licenses.hpnd;
|
2021-01-01 05:43:07 +00:00
|
|
|
maintainers = with maintainers; [ goibhniu prikhi SuperSandro2000 ];
|
2017-07-12 10:28:55 +00:00
|
|
|
};
|
2021-01-01 05:43:07 +00:00
|
|
|
} // args )
|