pythonPackages.pillow-simd: Init at 7.0.0.post3

This commit is contained in:
Sandro Jäckel 2021-01-01 05:25:20 +01:00
parent 84df5df735
commit 63e1b20c16
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5
2 changed files with 37 additions and 0 deletions

View file

@ -0,0 +1,32 @@
{ lib, stdenv, buildPythonPackage, fetchFromGitHub, isPyPy, isPy3k
, olefile, freetype, libjpeg, zlib, libtiff, libwebp, tcl, lcms2
, tk, libX11, openjpeg, libimagequant, pyroma, numpy, pytestCheckHook
}@args:
import ../pillow/generic.nix (rec {
pname = "Pillow-SIMD";
version = "7.0.0.post3";
disabled = !isPy3k;
src = fetchFromGitHub {
owner = "uploadcare";
repo = "pillow-simd";
rev = "v${version}";
sha256 = "1h832xp1bzf951hr4dmjmxqfsv28sx9lr2cq96qdz1c72k40zj1h";
};
meta = with lib; {
homepage = "https://python-pillow.github.io/pillow-perf/";
description = "The friendly PIL fork - SIMD version";
longDescription = ''
Pillow-SIMD is "following" Pillow. Pillow-SIMD versions are 100% compatible drop-in replacements for Pillow of the same version.
SIMD stands for "single instruction, multiple data" and its essence is in performing the same operation on multiple data points simultaneously by using multiple processing elements. Common CPU SIMD instruction sets are MMX, SSE-SSE4, AVX, AVX2, AVX512, NEON.
Currently, Pillow-SIMD can be compiled with SSE4 (default) or AVX2 support.
'';
license = "http://www.pythonware.com/products/pil/license.htm";
maintainers = with maintainers; [ SuperSandro2000 ];
};
} // args )

View file

@ -4849,6 +4849,11 @@ in {
inherit (pkgs.xorg) libX11;
};
pillow-simd = callPackage ../development/python-modules/pillow-simd {
inherit (pkgs) freetype libjpeg zlib libtiff libwebp tcl lcms2 tk;
inherit (pkgs.xorg) libX11;
};
pims = callPackage ../development/python-modules/pims { };
pinboard = callPackage ../development/python-modules/pinboard { };