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

67 lines
1.1 KiB
Nix
Raw Normal View History

2019-10-16 20:09:44 +00:00
{ lib
, buildPythonPackage
, cmake
2019-10-16 20:09:44 +00:00
, fetchPypi
, isPy3k
, pytest
, pytest-pylint
, nbconvert
2020-08-15 18:45:38 +00:00
, joblib
, jupyter-client
2019-10-16 20:09:44 +00:00
, numpy
, scipy
, pandas
, matplotlib
, ninja
2019-10-16 20:09:44 +00:00
, numba
, pybind11
2019-10-16 20:09:44 +00:00
}:
buildPythonPackage rec {
pname = "phik";
2021-08-26 19:32:40 +00:00
version = "0.12.0";
2019-10-16 20:09:44 +00:00
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "959fd40482246e3f643cdac5ea04135b2c11a487e917af7d4e75843f47183549";
2019-10-16 20:09:44 +00:00
};
checkInputs = [
pytest
pytest-pylint
nbconvert
jupyter-client
2019-10-16 20:09:44 +00:00
];
propagatedBuildInputs = [
2020-08-15 18:45:38 +00:00
joblib
2019-10-16 20:09:44 +00:00
numpy
scipy
pandas
matplotlib
numba
pybind11
];
# uses setuptools to drive build process
dontUseCmakeConfigure = true;
nativeBuildInputs = [
cmake
ninja
2019-10-16 20:09:44 +00:00
];
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;
};
}