mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-24 13:53:24 +00:00
02dab4ab5c
Long term we should move everything over to `pyproject = true`, but in the mean time we can work towards deprecating the implicit `format` paremeter. cc https://github.com/NixOS/nixpkgs/issues/253154 cc @mweinelt @figsoda
42 lines
797 B
Nix
42 lines
797 B
Nix
{ stdenv
|
|
, 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 = with lib; {
|
|
broken = (stdenv.isLinux && stdenv.isAarch64) || stdenv.isDarwin;
|
|
description = "Block-oriented, in-memory buffer transformation, compression, and decompression functions";
|
|
homepage = "https://www.lfd.uci.edu/~gohlke/";
|
|
maintainers = [ maintainers.tbenst ];
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|