nixpkgs/pkgs/development/python-modules/phik/default.nix
2022-04-15 01:39:38 +02:00

67 lines
1.1 KiB
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ lib
, buildPythonPackage
, cmake
, fetchPypi
, isPy3k
, pytest
, pytest-pylint
, nbconvert
, joblib
, jupyter-client
, numpy
, scipy
, pandas
, matplotlib
, ninja
, numba
, pybind11
}:
buildPythonPackage rec {
pname = "phik";
version = "0.12.2";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "sha256-sGdOuCnSMpBDP3GNI2ASK+gEsXDMyAetnZqNHBOYVTM=";
};
checkInputs = [
pytest
pytest-pylint
nbconvert
jupyter-client
];
propagatedBuildInputs = [
joblib
numpy
scipy
pandas
matplotlib
numba
pybind11
];
# uses setuptools to drive build process
dontUseCmakeConfigure = true;
nativeBuildInputs = [
cmake
ninja
];
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/";
maintainers = with maintainers; [ melsigl ];
license = licenses.asl20;
};
}