python3Packages.hyppo: fix build

This commit is contained in:
Robert T. McGibbon 2021-05-08 19:40:06 -04:00 committed by Jonathan Ringer
parent 83fe0340fd
commit dd7741f26e

View File

@ -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";