2021-01-01 05:43:07 +00:00
|
|
|
{ lib, stdenv, buildPythonPackage, fetchPypi, isPyPy, isPy3k
|
|
|
|
, olefile, freetype, libjpeg, zlib, libtiff, libwebp, tcl, lcms2, tk, libX11
|
2021-01-01 05:47:22 +00:00
|
|
|
, libxcb, openjpeg, libimagequant, pyroma, numpy, pytestCheckHook
|
2021-01-01 05:43:07 +00:00
|
|
|
}@args:
|
2020-06-01 20:20:13 +01:00
|
|
|
|
2021-01-01 05:43:07 +00:00
|
|
|
import ./generic.nix (rec {
|
2017-07-12 11:28:55 +01:00
|
|
|
pname = "Pillow";
|
2021-04-02 01:12:28 +01:00
|
|
|
version = "8.2.0";
|
2020-06-01 20:20:13 +01:00
|
|
|
|
|
|
|
disabled = !isPy3k;
|
2017-07-12 11:28:55 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2021-04-02 01:12:28 +01:00
|
|
|
sha256 = "1qf3bz1sfz58ff6hclg8phgqyy210x3aqdk5yzjr8m5vsw8ap1x7";
|
2017-07-12 11:28:55 +01:00
|
|
|
};
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-06-06 10:21:00 +01:00
|
|
|
homepage = "https://python-pillow.org/";
|
|
|
|
description = "The friendly PIL fork (Python Imaging Library)";
|
2017-07-12 11:28:55 +01: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 11:28:55 +01:00
|
|
|
};
|
2021-01-01 05:43:07 +00:00
|
|
|
} // args )
|