mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
36 lines
1.1 KiB
Nix
36 lines
1.1 KiB
Nix
{ lib, stdenv, buildPythonPackage, fetchPypi, isPyPy, isPy3k
|
|
, defusedxml, olefile, freetype, libjpeg, zlib, libtiff, libwebp, tcl, lcms2, tk, libX11
|
|
, libxcb, openjpeg, libimagequant, pyroma, numpy, pytestCheckHook
|
|
# for passthru.tests
|
|
, imageio, matplotlib, pilkit, pydicom, reportlab
|
|
}@args:
|
|
|
|
import ./generic.nix (rec {
|
|
pname = "Pillow";
|
|
version = "9.0.1";
|
|
|
|
disabled = !isPy3k;
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "bIvII4p9/a96dfXsWmY/QXP4w2flo5+H5yBJXh7tdfo=";
|
|
};
|
|
|
|
passthru.tests = {
|
|
inherit imageio matplotlib pilkit pydicom reportlab;
|
|
};
|
|
|
|
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 )
|