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 , numpy
, scikitlearn , scikitlearn
, scipy , scipy
, matplotlib
, seaborn
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -28,8 +30,12 @@ buildPythonPackage rec {
scipy scipy
]; ];
checkInputs = [ pytestCheckHook pytestcov ]; checkInputs = [ pytestCheckHook pytestcov matplotlib seaborn ];
pytestFlagsArray = [ "--ignore=docs" ]; disabledTestPaths = [
"docs"
"benchmarks"
"examples"
];
meta = with lib; { meta = with lib; {
homepage = "https://github.com/neurodata/hyppo"; homepage = "https://github.com/neurodata/hyppo";