Merge pull request #149693 from bcdarwin/hyppo-minor-improvements

python3Packages.hyppo: minor clean-up
This commit is contained in:
Bobby Rong 2021-12-22 20:11:21 +08:00 committed by GitHub
commit 4885f13f42
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,9 @@
{ lib
, buildPythonPackage
, isPy27
, pythonOlder
, fetchFromGitHub
, pytestCheckHook , pytest-cov , numba
, pytestCheckHook
, numba
, numpy
, scikit-learn
, scipy
@ -14,7 +15,7 @@ buildPythonPackage rec {
pname = "hyppo";
version = "0.2.2";
disabled = isPy27;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "neurodata";
@ -30,7 +31,7 @@ buildPythonPackage rec {
scipy
];
checkInputs = [ pytestCheckHook pytest-cov matplotlib seaborn ];
checkInputs = [ pytestCheckHook matplotlib seaborn ];
disabledTestPaths = [
"docs"
"benchmarks"