mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
9105610435
https://github.com/python-pillow/Pillow/blob/9.3.0/CHANGES.rst Pass through format to generic builder, updated disabled tests thereby recovering pillow-simd.
43 lines
1.2 KiB
Nix
43 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, buildPythonPackage
|
|
, pythonOlder
|
|
, fetchPypi
|
|
, isPyPy
|
|
, defusedxml, olefile, freetype, libjpeg, zlib, libtiff, libwebp, libxcrypt, 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.3.0";
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchPypi {
|
|
pname = "Pillow";
|
|
inherit version;
|
|
hash = "sha256-yTWiKlV6VgEI14D5oPxCbddFmUDcVPqknYMknI0+dg8=";
|
|
};
|
|
|
|
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 )
|