depot/third_party/nixpkgs/pkgs/development/python-modules/scikit-posthocs/default.nix
Default email 5c370c0b2a Project import generated by Copybara.
GitOrigin-RevId: 33d1e753c82ffc557b4a585c77de43d4c922ebb5
2024-05-15 17:35:15 +02:00

58 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchFromGitHub
, setuptools
, wheel
, matplotlib
, numpy
, pandas
, scipy
, seaborn
, statsmodels
, pytestCheckHook
, seaborn-data
}:
buildPythonPackage rec {
pname = "scikit-posthocs";
version = "0.9.0";
pyproject = true;
src = fetchFromGitHub {
owner = "maximtrp";
repo = "scikit-posthocs";
rev = "refs/tags/v${version}";
hash = "sha256-sRop5DKakrZEBswzTvumn68wKqU15zM5aCLfZ/PdsFg=";
};
nativeBuildInputs = [
setuptools
wheel
];
propagatedBuildInputs = [
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 ];
};
}