mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
bf995e3641
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*".*\.";' pkgs \ | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*)\.";/\1";/'
43 lines
846 B
Nix
43 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 ];
|
|
};
|
|
}
|