mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 22:36:23 +01:00
41 lines
788 B
Nix
41 lines
788 B
Nix
{ 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 ];
|
|
};
|
|
}
|