python3Packages.deepdish: init at 0.3.7

This commit is contained in:
Alexander Tsvyashchenko 2021-12-30 18:17:29 +01:00 committed by Jonathan Ringer
parent 99df3dc2d9
commit 95a5c4d4d7
2 changed files with 43 additions and 0 deletions

View File

@ -0,0 +1,41 @@
{ lib
, fetchPypi
, buildPythonPackage
, numpy
, scipy
, tables
}:
buildPythonPackage rec {
pname = "deepdish";
version = "0.3.7";
src = fetchPypi {
inherit pname version;
sha256 = "1wqzwh3y0mjdyba5kfbvlamn561d3afz50zi712c7klkysz3mzva";
};
propagatedBuildInputs = [
numpy
scipy
tables
];
pythonImportsCheck = [
"deepdish"
];
# checkInputs = [
# pandas
# ];
# The tests are broken: `ModuleNotFoundError: No module named 'deepdish.six.conf'`
doCheck = false;
meta = with lib; {
description = "Flexible HDF5 saving/loading and other data science tools from the University of Chicago.";
homepage = "https://github.com/uchicago-cs/deepdish";
license = licenses.asl20;
maintainers = with maintainers; [ ndl ];
};
}

View File

@ -2044,6 +2044,8 @@ in {
deepdiff = callPackage ../development/python-modules/deepdiff { };
deepdish = callPackage ../development/python-modules/deepdish { };
deepmerge = callPackage ../development/python-modules/deepmerge { };
deeptoolsintervals = callPackage ../development/python-modules/deeptoolsintervals { };