1{
2 lib,
3 fetchPypi,
4 buildPythonPackage,
5 numpy,
6 scipy,
7 tables,
8}:
9
10buildPythonPackage rec {
11 pname = "deepdish";
12 version = "0.3.7";
13 format = "setuptools";
14
15 src = fetchPypi {
16 inherit pname version;
17 sha256 = "1wqzwh3y0mjdyba5kfbvlamn561d3afz50zi712c7klkysz3mzva";
18 };
19
20 propagatedBuildInputs = [
21 numpy
22 scipy
23 tables
24 ];
25
26 pythonImportsCheck = [ "deepdish" ];
27
28 # nativeCheckInputs = [
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 mainProgram = "ddls";
38 homepage = "https://github.com/uchicago-cs/deepdish";
39 license = licenses.asl20;
40 maintainers = with maintainers; [ ndl ];
41 };
42}