about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/deepdish/default.nix
blob: 7033e2f9f851d2d4f5bae1c9e4358d8c2ebaa5d8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{ lib
, fetchPypi
, buildPythonPackage
, numpy
, scipy
, tables
}:

buildPythonPackage rec {
  pname = "deepdish";
  version = "0.3.7";
  format = "setuptools";

  src = fetchPypi {
    inherit pname version;
    sha256 = "1wqzwh3y0mjdyba5kfbvlamn561d3afz50zi712c7klkysz3mzva";
  };

  propagatedBuildInputs = [
    numpy
    scipy
    tables
  ];

  pythonImportsCheck = [
    "deepdish"
  ];

  # nativeCheckInputs = [
  #   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.";
    mainProgram = "ddls";
    homepage = "https://github.com/uchicago-cs/deepdish";
    license = licenses.asl20;
    maintainers = with maintainers; [ ndl ];
  };
}