python3Packages.hyppo: fix build

This commit is contained in:
Robert T. McGibbon 2022-04-23 13:56:56 -04:00 committed by Jonathan Ringer
parent 20c39d5741
commit 9a510e0424

View file

@ -3,6 +3,7 @@
, pythonOlder , pythonOlder
, fetchFromGitHub , fetchFromGitHub
, pytestCheckHook , pytestCheckHook
, autograd
, numba , numba
, numpy , numpy
, scikit-learn , scikit-learn
@ -25,6 +26,7 @@ buildPythonPackage rec {
}; };
propagatedBuildInputs = [ propagatedBuildInputs = [
autograd
numba numba
numpy numpy
scikit-learn scikit-learn
@ -40,8 +42,8 @@ buildPythonPackage rec {
meta = with lib; { meta = with lib; {
homepage = "https://github.com/neurodata/hyppo"; homepage = "https://github.com/neurodata/hyppo";
description = "Indepedence testing in Python"; description = "Python package for multivariate hypothesis testing";
license = licenses.asl20; license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ]; maintainers = with maintainers; [ bcdarwin ];
}; };
} }