depot/third_party/nixpkgs/pkgs/development/python-modules/graspologic/default.nix
Default email e7ec2969af Project import generated by Copybara.
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
2024-01-13 09:15:51 +01:00

57 lines
1.1 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 = "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;
};
}