depot/third_party/nixpkgs/pkgs/development/python-modules/graspologic/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

91 lines
1.6 KiB
Nix

{
lib,
stdenv,
buildPythonPackage,
fetchFromGitHub,
poetry-core,
poetry-dynamic-versioning,
pytestCheckHook,
testfixtures,
anytree,
beartype,
gensim,
graspologic-native,
hyppo,
joblib,
matplotlib,
networkx,
numpy,
pot,
scikit-learn,
scipy,
seaborn,
statsmodels,
typing-extensions,
umap-learn,
}:
buildPythonPackage rec {
pname = "graspologic";
version = "3.4.1";
pyproject = true;
src = fetchFromGitHub {
owner = "graspologic-org";
repo = "graspologic";
rev = "refs/tags/v${version}";
hash = "sha256-taX/4/uCQXW7yFykVHY78hJIGThEIycHwrEOZ3h1LPY=";
};
build-system = [
poetry-core
poetry-dynamic-versioning
];
pythonRelaxDeps = [ "scipy" ];
dependencies = [
anytree
beartype
gensim
graspologic-native
hyppo
joblib
matplotlib
networkx
numpy
pot
scikit-learn
scipy
seaborn
statsmodels
typing-extensions
umap-learn
];
env.NUMBA_CACHE_DIR = "$TMPDIR";
nativeCheckInputs = [
pytestCheckHook
testfixtures
];
pytestFlagsArray = [
"tests"
"--ignore=docs"
"--ignore=tests/test_sklearn.py"
];
disabledTests = [ "gridplot_outputs" ];
disabledTestPaths = lib.optionals stdenv.hostPlatform.isDarwin [
# SIGABRT
"tests/test_plot.py"
"tests/test_plot_matrix.py"
];
meta = with lib; {
homepage = "https://graspologic-org.github.io/graspologic";
description = "Package for graph statistical algorithms";
license = licenses.mit;
maintainers = with maintainers; [ bcdarwin ];
};
}