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

57 lines
1.0 KiB
Nix
Raw Normal View History

2019-10-16 20:09:44 +00:00
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, pytest
, pytest-pylint
, nbconvert
2020-08-15 18:45:38 +00:00
, joblib
2019-10-16 20:09:44 +00:00
, jupyter_client
, numpy
, scipy
, pandas
, matplotlib
, numba
}:
buildPythonPackage rec {
pname = "phik";
2021-08-26 19:32:40 +00:00
version = "0.12.0";
2019-10-16 20:09:44 +00:00
format = "wheel";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version format;
python = "py3";
2021-08-26 19:32:40 +00:00
sha256 = "57db39d1c74c84a24d0270b63d1c629a5cb975462919895b96a8522ae0678408";
2019-10-16 20:09:44 +00:00
};
checkInputs = [
pytest
pytest-pylint
nbconvert
jupyter_client
];
propagatedBuildInputs = [
2020-08-15 18:45:38 +00:00
joblib
2019-10-16 20:09:44 +00: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 20:09:44 +00:00
maintainers = with maintainers; [ melsigl ];
license = licenses.asl20;
};
}