bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
63 lines
1.2 KiB
Nix
63 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
isPy27,
|
|
fetchFromGitHub,
|
|
setuptools,
|
|
pytestCheckHook,
|
|
pytest-cov,
|
|
hyppo,
|
|
matplotlib,
|
|
networkx,
|
|
numpy,
|
|
scikit-learn,
|
|
scipy,
|
|
seaborn,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "graspologic";
|
|
version = "3.3.0";
|
|
pyproject = true;
|
|
|
|
disabled = isPy27;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "microsoft";
|
|
repo = "graspologic";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-hd3OyV95N8vhc4s50HbKkrcUOeSegn66Dkw7dixim00=";
|
|
};
|
|
|
|
nativeBuildInputs = [ setuptools ];
|
|
|
|
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 = "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;
|
|
};
|
|
}
|