3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/python-modules/phik/default.nix
Sergei Trofimovich 3fbb3a13c8 python39Packages.phik: fix build
Before the change `phik `failed to fetch the wheel:

    error: cannot download phik-0.12.0-py3-none-any.whl from any mirror

Looking at https://pypi.org/project/phik/#modal-close there is a setuptools
style package:

     phik-0.12.0.tar.gz (44.2 kB)

This change pulls it in and adds enough dependencies to build shared library.

Closes: https://github.com/NixOS/nixpkgs/issues/138328
2021-09-25 09:20:55 +01: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.0";
disabled = !isPy3k;
src = fetchPypi {
inherit pname version;
sha256 = "959fd40482246e3f643cdac5ea04135b2c11a487e917af7d4e75843f47183549";
};
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;
};
}