mirror of
https://github.com/CHN-beta/nixpkgs.git
synced 2026-01-16 21:10:25 +08:00
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.
52 lines
1.0 KiB
Nix
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;
|
|
};
|
|
}
|