54 lines
1.1 KiB
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
matplotlib,
numpy,
pandas,
scipy,
seaborn,
statsmodels,
pytestCheckHook,
seaborn-data,
}:
buildPythonPackage rec {
pname = "scikit-posthocs";
version = "0.11.2";
pyproject = true;
src = fetchFromGitHub {
owner = "maximtrp";
repo = "scikit-posthocs";
tag = "v${version}";
hash = "sha256-ChYBjT7xeAiKJFRI9ov4vOGucy0aK0j/0dndNs4ewBo=";
};
build-system = [ setuptools ];
dependencies = [
matplotlib
numpy
pandas
scipy
seaborn
statsmodels
];
preCheck = ''
# tests require to write to home directory
export SEABORN_DATA=${seaborn-data.exercise}
'';
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "scikit_posthocs" ];
meta = with lib; {
description = "Multiple Pairwise Comparisons (Post Hoc) Tests in Python";
homepage = "https://github.com/maximtrp/scikit-posthocs";
changelog = "https://github.com/maximtrp/scikit-posthocs/releases/tag/v${version}";
license = licenses.mit;
maintainers = with maintainers; [ mbalatsko ];
};
}