nixpkgs/pkgs/development/python-modules/hyppo/default.nix

47 lines
839 B
Nix
Raw Normal View History

2020-09-10 19:13:57 +00:00
{ lib
, buildPythonPackage
, isPy27
, fetchFromGitHub
, pytestCheckHook , pytestcov , numba
, numpy
, scikit-learn
2020-09-10 19:13:57 +00:00
, scipy
2021-05-08 23:40:06 +00:00
, matplotlib
, seaborn
2020-09-10 19:13:57 +00:00
}:
buildPythonPackage rec {
pname = "hyppo";
2021-03-24 17:41:50 +00:00
version = "0.2.1";
2020-09-10 19:13:57 +00:00
disabled = isPy27;
src = fetchFromGitHub {
owner = "neurodata";
repo = pname;
rev = "v${version}";
2021-03-24 17:41:50 +00:00
sha256 = "0izjc68rb6sr3x55c3zzraakzspgzh80qykfax9zj868zypfm365";
2020-09-10 19:13:57 +00:00
};
propagatedBuildInputs = [
numba
numpy
scikit-learn
2020-09-10 19:13:57 +00:00
scipy
];
2021-05-08 23:40:06 +00:00
checkInputs = [ pytestCheckHook pytestcov matplotlib seaborn ];
disabledTestPaths = [
"docs"
"benchmarks"
"examples"
];
2020-09-10 19:13:57 +00:00
meta = with lib; {
homepage = "https://github.com/neurodata/hyppo";
description = "Indepedence testing in Python";
license = licenses.asl20;
maintainers = with maintainers; [ bcdarwin ];
};
}