nixpkgs/pkgs/development/python-modules/pillow/default.nix

30 lines
981 B
Nix
Raw Normal View History

{ lib, stdenv, buildPythonPackage, fetchPypi, isPyPy, isPy3k
, olefile, freetype, libjpeg, zlib, libtiff, libwebp, tcl, lcms2, tk, libX11
, libxcb, openjpeg, libimagequant, pyroma, numpy, pytestCheckHook
}@args:
import ./generic.nix (rec {
2017-07-12 10:28:55 +00:00
pname = "Pillow";
version = "8.1.0";
disabled = !isPy3k;
2017-07-12 10:28:55 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "1fnvc07m15fv59bdlkds1q7rl9jrr3cbbn69sfqvzvdpjbknhxl8";
2017-07-12 10:28:55 +00:00
};
meta = with lib; {
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.
'';
license = "http://www.pythonware.com/products/pil/license.htm";
maintainers = with maintainers; [ goibhniu prikhi SuperSandro2000 ];
2017-07-12 10:28:55 +00:00
};
} // args )