1{ lib, fetchPypi, buildPythonPackage
2, pytest
3, numpy
4, cython
5}:
6
7buildPythonPackage rec {
8 pname = "imagecodecs-lite";
9 version = "2019.4.20";
10
11 src = fetchPypi {
12 inherit pname version;
13 sha256 = "1cp88g7g91gdhjhaz6gvb4jzvi5ad817id9f2bnc5r95ag93bqb0";
14 };
15
16 checkInputs = [ pytest ];
17 propagatedBuildInputs = [ numpy cython ];
18
19 meta = with lib; {
20 description = "Block-oriented, in-memory buffer transformation, compression, and decompression functions";
21 homepage = "https://www.lfd.uci.edu/~gohlke/";
22 maintainers = [ maintainers.tbenst ];
23 license = licenses.bsd3;
24 };
25}