2021-02-19 19:06:45 +00:00
|
|
|
{ lib, stdenv, buildPythonPackage, fetchPypi, isPyPy, isPy3k
|
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
|
|
|
|
}@args:
|
2020-06-18 07:06:33 +00:00
|
|
|
|
2021-02-19 19:06:45 +00:00
|
|
|
import ./generic.nix (rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "Pillow";
|
2021-12-26 17:43:05 +00:00
|
|
|
version = "8.4.0";
|
2020-06-18 07:06:33 +00:00
|
|
|
|
|
|
|
disabled = !isPy3k;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-12-26 17:43:05 +00:00
|
|
|
sha256 = "b8e2f83c56e141920c39464b852de3719dfbfb6e3c99a2d8da0edf4fb33176ed";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
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 )
|