30 lines
954 B
Nix
30 lines
954 B
Nix
{ lib, stdenv, buildPythonPackage, fetchPypi, isPyPy, isPy3k
|
|
, defusedxml, olefile, freetype, libjpeg, zlib, libtiff, libwebp, tcl, lcms2, tk, libX11
|
|
, libxcb, openjpeg, libimagequant, pyroma, numpy, pytestCheckHook
|
|
}@args:
|
|
|
|
import ./generic.nix (rec {
|
|
pname = "Pillow";
|
|
version = "8.3.2";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "1361y215ydmdh4il1vay5831aqivmpwgzjqrphqjdiq0ipnz7qyx";
|
|
};
|
|
|
|
meta = with lib; {
|
|
homepage = "https://python-pillow.org/";
|
|
description = "The friendly PIL fork (Python Imaging Library)";
|
|
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.
|
|
'';
|
|
license = licenses.hpnd;
|
|
maintainers = with maintainers; [ goibhniu prikhi SuperSandro2000 ];
|
|
};
|
|
} // args )
|