Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
41 changes: 41 additions & 0 deletions pkgs/development/python-modules/deepdish/default.nix
Original file line number Diff line number Diff line change
@@ -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'`
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

please create an upstream issue

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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/python-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2042,6 +2042,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 { };
Expand Down