python313Packages.pgmpy: adjust check section

Changed files
+19 -12
pkgs
development
python-modules
pgmpy
+19 -12
pkgs/development/python-modules/pgmpy/default.nix
···
fetchFromGitHub,
# dependencies
+
google-generativeai,
+
joblib,
networkx,
numpy,
-
scipy,
-
scikit-learn,
+
opt-einsum,
pandas,
pyparsing,
+
pyro-ppl,
+
scikit-learn,
+
scipy,
+
statsmodels,
torch,
-
statsmodels,
tqdm,
-
joblib,
-
opt-einsum,
xgboost,
-
google-generativeai,
# tests
pytestCheckHook,
···
};
dependencies = [
+
google-generativeai
+
joblib
networkx
numpy
-
scipy
-
scikit-learn
+
opt-einsum
pandas
pyparsing
-
torch
+
pyro-ppl
+
scikit-learn
+
scipy
statsmodels
+
torch
tqdm
-
joblib
-
opt-einsum
xgboost
-
google-generativeai
];
disabledTests = [
···
# requires optional dependency daft
"test_to_daft"
+
+
# AssertionError
+
"test_estimate_example_smoke_test"
];
nativeCheckInputs = [
···
mock
black
];
+
+
pythonImportsCheck = [ "pgmpy" ];
meta = {
description = "Python Library for learning (Structure and Parameter), inference (Probabilistic and Causal), and simulations in Bayesian Networks";