Merge pull request #119126 from fabaff/pycomfoconnect
[NixPkgs.git] / pkgs / development / python-modules / pillow-simd / default.nix
blob3aed634dfb1a15de1381d273ed04906e2e094760
1 { lib, stdenv, buildPythonPackage, fetchFromGitHub, isPyPy, isPy3k
2 , olefile, freetype, libjpeg, zlib, libtiff, libwebp, tcl, lcms2
3 , tk, libX11, openjpeg, libimagequant, pyroma, numpy, pytestCheckHook
4 }@args:
6 import ../pillow/generic.nix (rec {
7   pname = "Pillow-SIMD";
8   version = "7.0.0.post3";
10   disabled = !isPy3k;
12   src = fetchFromGitHub {
13     owner = "uploadcare";
14     repo = "pillow-simd";
15     rev = "v${version}";
16     sha256 = "1h832xp1bzf951hr4dmjmxqfsv28sx9lr2cq96qdz1c72k40zj1h";
17   };
19   meta = with lib; {
20     homepage = "https://python-pillow.github.io/pillow-perf/";
21     description = "The friendly PIL fork - SIMD version";
22     longDescription = ''
23       Pillow-SIMD is "following" Pillow. Pillow-SIMD versions are 100% compatible drop-in replacements for Pillow of the same version.
25       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.
27       Currently, Pillow-SIMD can be compiled with SSE4 (default) or AVX2 support.
28     '';
29     license = "http://www.pythonware.com/products/pil/license.htm";
30     maintainers = with maintainers; [ SuperSandro2000 ];
31   };
32 } // args )