aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/imagecodecs-lite/default.nix
blob: 6374b882718bf6abfb7615b6491016c3511a2ded (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ lib, fetchPypi, buildPythonPackage
, pytest
, numpy
, cython
}:

buildPythonPackage rec {
  pname = "imagecodecs-lite";
  version = "2019.4.20";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1cp88g7g91gdhjhaz6gvb4jzvi5ad817id9f2bnc5r95ag93bqb0";
  };

  checkInputs = [ pytest ];
  propagatedBuildInputs = [ numpy cython ];

  meta = with lib; {
    description = "Block-oriented, in-memory buffer transformation, compression, and decompression functions";
    homepage = "https://www.lfd.uci.edu/~gohlke/";
    maintainers = [ maintainers.tbenst ];
    license = licenses.bsd3;
  };
}