summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/hyppo
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/hyppo')
-rw-r--r--pkgs/development/python-modules/hyppo/default.nix14
1 files changed, 10 insertions, 4 deletions
diff --git a/pkgs/development/python-modules/hyppo/default.nix b/pkgs/development/python-modules/hyppo/default.nix
index 86b43465fb64..9fdeca082b2f 100644
--- a/pkgs/development/python-modules/hyppo/default.nix
+++ b/pkgs/development/python-modules/hyppo/default.nix
@@ -4,8 +4,10 @@
, fetchFromGitHub
, pytestCheckHook , pytestcov , numba
, numpy
-, scikitlearn
+, scikit-learn
, scipy
+, matplotlib
+, seaborn
}:
buildPythonPackage rec {
@@ -24,12 +26,16 @@ buildPythonPackage rec {
propagatedBuildInputs = [
numba
numpy
- scikitlearn
+ scikit-learn
scipy
];
- checkInputs = [ pytestCheckHook pytestcov ];
- pytestFlagsArray = [ "--ignore=docs" ];
+ checkInputs = [ pytestCheckHook pytestcov matplotlib seaborn ];
+ disabledTestPaths = [
+ "docs"
+ "benchmarks"
+ "examples"
+ ];
meta = with lib; {
homepage = "https://github.com/neurodata/hyppo";