1{ lib
2, fetchPypi
3, buildPythonPackage
4, numpy
5, scipy
6, tables
7}:
8
9buildPythonPackage rec {
10 pname = "deepdish";
11 version = "0.3.7";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "1wqzwh3y0mjdyba5kfbvlamn561d3afz50zi712c7klkysz3mzva";
16 };
17
18 propagatedBuildInputs = [
19 numpy
20 scipy
21 tables
22 ];
23
24 pythonImportsCheck = [
25 "deepdish"
26 ];
27
28 # checkInputs = [
29 # pandas
30 # ];
31
32 # The tests are broken: `ModuleNotFoundError: No module named 'deepdish.six.conf'`
33 doCheck = false;
34
35 meta = with lib; {
36 description = "Flexible HDF5 saving/loading and other data science tools from the University of Chicago.";
37 homepage = "https://github.com/uchicago-cs/deepdish";
38 license = licenses.asl20;
39 maintainers = with maintainers; [ ndl ];
40 };
41}