17 buildPythonPackage rec {
18 pname = "scikit-posthocs";
22 src = fetchFromGitHub {
24 repo = "scikit-posthocs";
25 rev = "refs/tags/v${version}";
26 hash = "sha256-ssaTd+A7lzd4tlKHGkgKixi3XjZLQBcPs6UOEzX/hrk=";
34 propagatedBuildInputs = [
44 # tests require to write to home directory
45 export SEABORN_DATA=${seaborn-data.exercise}
47 nativeCheckInputs = [ pytestCheckHook ];
48 pythonImportsCheck = [ "scikit_posthocs" ];
51 description = "Multiple Pairwise Comparisons (Post Hoc) Tests in Python";
52 homepage = "https://github.com/maximtrp/scikit-posthocs";
53 changelog = "https://github.com/maximtrp/scikit-posthocs/releases/tag/v${version}";
54 license = licenses.mit;
55 maintainers = with maintainers; [ mbalatsko ];