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

55 lines
1 KiB
Nix
Raw Normal View History

2019-10-16 22:09:44 +02:00
{ lib
, buildPythonPackage
, fetchPypi
, isPy3k
, pytest
, pytest-pylint
, nbconvert
, jupyter_client
, numpy
, scipy
, pandas
, matplotlib
, numba
}:
buildPythonPackage rec {
pname = "phik";
2020-05-09 12:01:53 +02:00
version = "0.9.11";
2019-10-16 22:09:44 +02:00
format = "wheel";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version format;
python = "py3";
2020-05-09 12:01:53 +02:00
sha256 = "b8c36dc50265d8c0626b34e3bc74cd0edd342d9d8ecc3d78c06817200bb31d10";
2019-10-16 22:09:44 +02:00
};
checkInputs = [
pytest
pytest-pylint
nbconvert
jupyter_client
];
propagatedBuildInputs = [
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 22:09:44 +02:00
maintainers = with maintainers; [ melsigl ];
license = licenses.asl20;
};
}