pythonPackages.imagecodecs-lite: 2019.4.20 -> 2019.12.3
This commit is contained in:
parent
8bb4ccd1b5
commit
e291a32cd4
|
@ -6,15 +6,28 @@
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "imagecodecs-lite";
|
pname = "imagecodecs-lite";
|
||||||
version = "2019.4.20";
|
version = "2019.12.3";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "1cp88g7g91gdhjhaz6gvb4jzvi5ad817id9f2bnc5r95ag93bqb0";
|
sha256 = "0s4xb17qd7vimc46rafbjnibj4sf0lnv8cwl22k1h6zb7jhqmlcm";
|
||||||
};
|
};
|
||||||
|
|
||||||
checkInputs = [ pytest ];
|
nativeBuildInputs = [
|
||||||
propagatedBuildInputs = [ numpy cython ];
|
cython
|
||||||
|
];
|
||||||
|
|
||||||
|
checkInputs = [
|
||||||
|
pytest
|
||||||
|
];
|
||||||
|
|
||||||
|
propagatedBuildInputs = [
|
||||||
|
numpy
|
||||||
|
];
|
||||||
|
|
||||||
|
checkPhase = ''
|
||||||
|
pytest
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Block-oriented, in-memory buffer transformation, compression, and decompression functions";
|
description = "Block-oriented, in-memory buffer transformation, compression, and decompression functions";
|
||||||
|
|
Loading…
Reference in New Issue