mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-20 20:03:24 +00:00
python3Packages.deepdish: init at 0.3.7
This commit is contained in:
parent
99df3dc2d9
commit
95a5c4d4d7
41
pkgs/development/python-modules/deepdish/default.nix
Normal file
41
pkgs/development/python-modules/deepdish/default.nix
Normal file
@ -0,0 +1,41 @@
|
||||
{ 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 ];
|
||||
};
|
||||
}
|
@ -2044,6 +2044,8 @@ in {
|
||||
|
||||
deepdiff = callPackage ../development/python-modules/deepdiff { };
|
||||
|
||||
deepdish = callPackage ../development/python-modules/deepdish { };
|
||||
|
||||
deepmerge = callPackage ../development/python-modules/deepmerge { };
|
||||
|
||||
deeptoolsintervals = callPackage ../development/python-modules/deeptoolsintervals { };
|
||||
|
Loading…
Reference in New Issue
Block a user