nixpkgs/pkgs/development/python-modules/phik/default.nix

57 lines
1.0 KiB
Nix
Raw Normal View History

2019-10-16 21:09:44 +01:00
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, pytest
, pytest-pylint
, nbconvert
2020-08-15 19:45:38 +01:00
, joblib
2019-10-16 21:09:44 +01:00
, jupyter_client
, numpy
, scipy
, pandas
, matplotlib
, numba
}:
buildPythonPackage rec {
pname = "phik";
2020-06-06 07:47:21 +01:00
version = "0.10.0";
2019-10-16 21:09:44 +01:00
format = "wheel";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version format;
python = "py3";
2020-06-06 07:47:21 +01:00
sha256 = "b745313c5ff9d6a3092eefa97f83fa4dbed178c9ce69161b655e95497cb2f38b";
2019-10-16 21:09:44 +01:00
};
checkInputs = [
pytest
pytest-pylint
nbconvert
jupyter_client
];
propagatedBuildInputs = [
2020-08-15 19:45:38 +01:00
joblib
2019-10-16 21:09:44 +01:00
numpy
scipy
pandas
matplotlib
numba
];
postInstall = ''
rm -r $out/bin
'';
meta = with lib; {
description = "Phi_K correlation analyzer library";
longDescription = "Phi_K is a new and practical correlation coefficient based on several refinements to Pearsons hypothesis test of independence of two variables.";
homepage = "https://phik.readthedocs.io/en/latest/";
2019-10-16 21:09:44 +01:00
maintainers = with maintainers; [ melsigl ];
license = licenses.asl20;
};
}