depot/third_party/nixpkgs/pkgs/development/python-modules/hyppo/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

63 lines
1.3 KiB
Nix

{
lib,
buildPythonPackage,
pythonOlder,
fetchFromGitHub,
setuptools,
pytestCheckHook,
autograd,
numba,
numpy,
scikit-learn,
scipy,
matplotlib,
seaborn,
}:
buildPythonPackage rec {
pname = "hyppo";
version = "0.4.0";
pyproject = true;
disabled = pythonOlder "3.6";
src = fetchFromGitHub {
owner = "neurodata";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-QRE3oSxTEobTQ/7DzCAUOdjzIZmWUn9bgPmJWj6JuZg=";
};
# some of the doctests (4/21) are broken, e.g. unbound variables, nondeterministic with insufficient tolerance, etc.
# (note upstream's .circleci/config.yml only tests test_*.py files despite their pytest.ini adding --doctest-modules)
postPatch = ''
substituteInPlace pytest.ini --replace-fail "addopts = --doctest-modules" ""
'';
build-system = [ setuptools ];
propagatedBuildInputs = [
autograd
numba
numpy
scikit-learn
scipy
];
nativeCheckInputs = [
pytestCheckHook
matplotlib
seaborn
];
pytestFlagsArray = [
"hyppo"
];
meta = with lib; {
homepage = "https://github.com/neurodata/hyppo";
description = "Python package for multivariate hypothesis testing";
changelog = "https://github.com/neurodata/hyppo/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
};
}