Files
nixpkgs/pkgs/development/python-modules/graspologic/default.nix
Guillaume Girol 33afbf39f6 treewide: switch to nativeCheckInputs
checkInputs used to be added to nativeBuildInputs. Now we have
nativeCheckInputs to do that instead. Doing this treewide change allows
to keep hashes identical to before the introduction of
nativeCheckInputs.
2023-01-21 12:00:00 +00:00

52 lines
1.0 KiB
Nix

{ lib
, buildPythonPackage
, isPy27
, fetchFromGitHub
, pytestCheckHook
, pytest-cov
, hyppo
, matplotlib
, networkx
, numpy
, scikit-learn
, scipy
, seaborn
}:
buildPythonPackage rec {
pname = "graspologic";
version = "2.0.1";
disabled = isPy27;
src = fetchFromGitHub {
owner = "microsoft";
repo = "graspologic";
rev = "refs/tags/v${version}";
sha256 = "sha256-EmbCA4JpY2OIwXrRWjBxA4iNm0ddQODjoGmHIYgvAWs=";
};
propagatedBuildInputs = [
hyppo
matplotlib
networkx
numpy
scikit-learn
scipy
seaborn
];
nativeCheckInputs = [ pytestCheckHook pytest-cov ];
pytestFlagsArray = [ "tests" "--ignore=docs" "--ignore=tests/test_sklearn.py" ];
disabledTests = [ "gridplot_outputs" ];
meta = with lib; {
homepage = "https://graspologic.readthedocs.io";
description = "A package for graph statistical algorithms";
license = licenses.asl20; # changing to `licenses.mit` in next release
maintainers = with maintainers; [ bcdarwin ];
# graspologic-native is not available
broken = true;
};
}