linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / python-modules / imagecodecs-lite / default.nix
blob861a0ed0db3d4b0df6e5c89423e4274ee91ac50f
1 { lib, fetchPypi, buildPythonPackage
2 , pytest
3 , numpy
4 , cython
5 }:
7 buildPythonPackage rec {
8   pname = "imagecodecs-lite";
9   version = "2019.12.3";
11   src = fetchPypi {
12     inherit pname version;
13     sha256 = "0s4xb17qd7vimc46rafbjnibj4sf0lnv8cwl22k1h6zb7jhqmlcm";
14   };
16   nativeBuildInputs = [
17     cython
18   ];
20   checkInputs = [
21     pytest
22   ];
24   propagatedBuildInputs = [
25     numpy
26   ];
28   checkPhase = ''
29     pytest
30   '';
32   meta = with lib; {
33     description = "Block-oriented, in-memory buffer transformation, compression, and decompression functions";
34     homepage = "https://www.lfd.uci.edu/~gohlke/";
35     maintainers = [ maintainers.tbenst ];
36     license = licenses.bsd3;
37   };