depot/third_party/nixpkgs/pkgs/development/python-modules/deepdish/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

42 lines
846 B
Nix

{
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 ];
};
}