summary refs log tree commit diff
path: root/pkgs/development/python-modules/hyppo
diff options
context:
space:
mode:
authorRobert T. McGibbon <rmcgibbo@gmail.com>2021-05-08 19:40:06 -0400
committerJonathan Ringer <jonringer@users.noreply.github.com>2021-05-08 17:06:47 -0700
commitdd7741f26e0140f53a3baf68b380aae701844434 (patch)
tree716254b5405019b73714b59991dc251da82b468e /pkgs/development/python-modules/hyppo
parent83fe0340fd81f1810e6ffcb314770e6659f2d032 (diff)
downloadnixpkgs-dd7741f26e0140f53a3baf68b380aae701844434.tar
nixpkgs-dd7741f26e0140f53a3baf68b380aae701844434.tar.gz
nixpkgs-dd7741f26e0140f53a3baf68b380aae701844434.tar.bz2
nixpkgs-dd7741f26e0140f53a3baf68b380aae701844434.tar.lz
nixpkgs-dd7741f26e0140f53a3baf68b380aae701844434.tar.xz
nixpkgs-dd7741f26e0140f53a3baf68b380aae701844434.tar.zst
nixpkgs-dd7741f26e0140f53a3baf68b380aae701844434.zip
python3Packages.hyppo: fix build
Diffstat (limited to 'pkgs/development/python-modules/hyppo')
-rw-r--r--pkgs/development/python-modules/hyppo/default.nix10
1 files changed, 8 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/hyppo/default.nix b/pkgs/development/python-modules/hyppo/default.nix
index 86b43465fb6..cc0b569d9b2 100644
--- a/pkgs/development/python-modules/hyppo/default.nix
+++ b/pkgs/development/python-modules/hyppo/default.nix
@@ -6,6 +6,8 @@
 , numpy
 , scikitlearn
 , scipy
+, matplotlib
+, seaborn
 }:
 
 buildPythonPackage rec {
@@ -28,8 +30,12 @@ buildPythonPackage rec {
     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";