16 buildPythonPackage rec {
17 pname = "scikit-posthocs";
21 src = fetchFromGitHub {
23 repo = "scikit-posthocs";
24 rev = "refs/tags/v${version}";
25 hash = "sha256-sRop5DKakrZEBswzTvumn68wKqU15zM5aCLfZ/PdsFg=";
29 # Fixed on master: https://github.com/maximtrp/scikit-posthocs/commit/02266a00ce0eb6a089e7efe07816da1aa5152fc9
30 ./0001-increased-abs-tolerance-for-wilcoxon-test.patch
31 # Fixed on master: https://github.com/maximtrp/scikit-posthocs/commit/5416ffba3ab01aebab3909400b5a9e847022898e
32 ./0002-Update-test_posthocs.py.patch
40 propagatedBuildInputs = [
50 # tests require to write to home directory
51 export SEABORN_DATA=${seaborn-data.exercise}
56 pythonImportsCheck = [ "scikit_posthocs" ];
59 description = "Multiple Pairwise Comparisons (Post Hoc) Tests in Python";
60 homepage = "https://github.com/maximtrp/scikit-posthocs";
61 changelog = "https://github.com/maximtrp/scikit-posthocs/releases/tag/v${version}";
62 license = licenses.mit;
63 maintainers = with maintainers; [ mbalatsko ];