pythonPackages.imagecodecs-lite: 2019.4.20 -> 2019.12.3

This commit is contained in:
Chris Ostrouchov 2019-12-30 08:30:28 -05:00
parent 8bb4ccd1b5
commit e291a32cd4
No known key found for this signature in database
GPG Key ID: 9ED59B0AB1EAF573

View File

@ -6,15 +6,28 @@
buildPythonPackage rec {
pname = "imagecodecs-lite";
version = "2019.4.20";
version = "2019.12.3";
src = fetchPypi {
inherit pname version;
sha256 = "1cp88g7g91gdhjhaz6gvb4jzvi5ad817id9f2bnc5r95ag93bqb0";
sha256 = "0s4xb17qd7vimc46rafbjnibj4sf0lnv8cwl22k1h6zb7jhqmlcm";
};
checkInputs = [ pytest ];
propagatedBuildInputs = [ numpy cython ];
nativeBuildInputs = [
cython
];
checkInputs = [
pytest
];
propagatedBuildInputs = [
numpy
];
checkPhase = ''
pytest
'';
meta = with lib; {
description = "Block-oriented, in-memory buffer transformation, compression, and decompression functions";