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
1 changed files with 17 additions and 4 deletions

View File

@ -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";