Files
nixpkgs/pkgs/development/python-modules/imagecodecs-lite/default.nix
T
Marcin Serwin a03723889e maintainers: drop tbenst
Signed-off-by: Marcin Serwin <marcin@serwin.dev>
2026-02-24 00:22:21 +01:00

37 lines
685 B
Nix

{
lib,
fetchPypi,
buildPythonPackage,
pytest,
numpy,
cython,
}:
buildPythonPackage rec {
pname = "imagecodecs-lite";
version = "2019.12.3";
format = "setuptools";
src = fetchPypi {
inherit pname version;
sha256 = "0s4xb17qd7vimc46rafbjnibj4sf0lnv8cwl22k1h6zb7jhqmlcm";
};
nativeBuildInputs = [ cython ];
nativeCheckInputs = [ pytest ];
propagatedBuildInputs = [ numpy ];
checkPhase = ''
pytest
'';
meta = {
description = "Block-oriented, in-memory buffer transformation, compression, and decompression functions";
homepage = "https://www.lfd.uci.edu/~gohlke/";
maintainers = [ ];
license = lib.licenses.bsd3;
};
}