Files
nixpkgs/pkgs/development/python-modules/graspologic/default.nix
Ihar Hrachyshka cca3b04b44 treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 19:01:23 +01:00

101 lines
1.7 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 = [
"beartype"
"hyppo"
"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
];
enabledTestPaths = [
"tests"
];
disabledTests = [ "gridplot_outputs" ];
disabledTestPaths = [
"docs"
"tests/test_sklearn.py"
]
++ lib.optionals stdenv.hostPlatform.isDarwin [
# SIGABRT
"tests/test_plot.py"
"tests/test_plot_matrix.py"
];
meta = {
description = "Package for graph statistical algorithms";
homepage = "https://graspologic-org.github.io/graspologic";
changelog = "https://github.com/graspologic-org/graspologic/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ bcdarwin ];
};
}