nixpkgs/pkgs/development/python-modules/graspologic/default.nix
Martin Weinelt 0215034f25 python3.pkgs: Migrate fetchers to use hash
when they already rely on SRI hashes.
2023-03-03 23:59:29 +01:00

52 lines
1 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}";
hash = "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;
};
}