mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
python3Packages.hyppo: fix build
This commit is contained in:
parent
83fe0340fd
commit
dd7741f26e
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user