python310Packages.pgmpy: init at 0.1.23

This commit is contained in:
happysalada 2023-07-10 22:36:00 +08:00 committed by Yt
parent 6c0d664eb8
commit 709095c009
2 changed files with 80 additions and 0 deletions

View File

@ -0,0 +1,78 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, 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.23";
# optional-dependencies = {
# all = [ daft ];
# };
in
buildPythonPackage {
inherit pname version;
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "pgmpy";
repo = pname;
rev = "v${version}";
hash = "sha256-4NY37Awhu2mnfZQ/biN1wa9rkGHhTxfZm0+V7D83NR0=";
};
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 ];
};
}

View File

@ -7738,6 +7738,8 @@ self: super: with self; {
pencompy = callPackage ../development/python-modules/pencompy { };
pgmpy = callPackage ../development/python-modules/pgmpy { };
phonopy = callPackage ../development/python-modules/phonopy { };
pixcat = callPackage ../development/python-modules/pixcat { };