2021-02-19 19:06:45 +00:00
|
|
|
{ lib, stdenv, buildPythonPackage, fetchPypi, isPyPy, isPy3k
|
|
|
|
, olefile, freetype, libjpeg, zlib, libtiff, libwebp, tcl, lcms2, tk, libX11
|
|
|
|
, 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-04-26 19:14:03 +00:00
|
|
|
version = "8.2.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-04-26 19:14:03 +00:00
|
|
|
sha256 = "1qf3bz1sfz58ff6hclg8phgqyy210x3aqdk5yzjr8m5vsw8ap1x7";
|
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 )
|