fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
88 lines
1.8 KiB
Nix
88 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
pythonAtLeast,
|
|
pythonOlder,
|
|
# build inputs
|
|
networkx,
|
|
numpy,
|
|
scipy,
|
|
scikit-learn,
|
|
pandas,
|
|
pyparsing,
|
|
torch,
|
|
statsmodels,
|
|
tqdm,
|
|
joblib,
|
|
opt-einsum,
|
|
# check inputs
|
|
pytestCheckHook,
|
|
pytest-cov,
|
|
coverage,
|
|
mock,
|
|
black,
|
|
}:
|
|
let
|
|
pname = "pgmpy";
|
|
version = "0.1.25";
|
|
in
|
|
# optional-dependencies = {
|
|
# all = [ daft ];
|
|
# };
|
|
buildPythonPackage {
|
|
inherit pname version;
|
|
format = "setuptools";
|
|
|
|
disabled = pythonOlder "3.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "pgmpy";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-d2TNcJQ82XxTWdetLgtKXRpFulAEEzrr+cyRewoA6YI=";
|
|
};
|
|
|
|
# TODO: Remove this patch after updating to pgmpy 0.1.26.
|
|
# The PR https://github.com/pgmpy/pgmpy/pull/1745 will have been merged.
|
|
# It contains the fix below, among other things, which is why we do not use fetchpatch.
|
|
postPatch = lib.optionalString (pythonAtLeast "3.12") ''
|
|
substituteInPlace pgmpy/tests/test_estimators/test_MarginalEstimator.py \
|
|
--replace-fail 'self.assert_' 'self.assertTrue'
|
|
'';
|
|
|
|
propagatedBuildInputs = [
|
|
networkx
|
|
numpy
|
|
scipy
|
|
scikit-learn
|
|
pandas
|
|
pyparsing
|
|
torch
|
|
statsmodels
|
|
tqdm
|
|
joblib
|
|
opt-einsum
|
|
];
|
|
|
|
disabledTests = [
|
|
"test_to_daft" # requires optional dependency daft
|
|
];
|
|
|
|
nativeCheckInputs = [
|
|
pytestCheckHook
|
|
# xdoctest
|
|
pytest-cov
|
|
coverage
|
|
mock
|
|
black
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Python Library for learning (Structure and Parameter), inference (Probabilistic and Causal), and simulations in Bayesian Networks";
|
|
homepage = "https://github.com/pgmpy/pgmpy";
|
|
changelog = "https://github.com/pgmpy/pgmpy/releases/tag/v${version}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ happysalada ];
|
|
};
|
|
}
|