depot/third_party/nixpkgs/pkgs/development/python-modules/pyro-ppl/default.nix
Default email d5f4a57cbf Project import generated by Copybara.
GitOrigin-RevId: ce5e4a6ef2e59d89a971bc434ca8ca222b9c7f5e
2023-08-10 09:59:29 +02:00

74 lines
1.2 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, graphviz
, jupyter
, matplotlib
, networkx
, opt-einsum
, pandas
, pillow
, pyro-api
, pythonOlder
, torch
, scikit-learn
, seaborn
, torchvision
, tqdm
, wget
}:
buildPythonPackage rec {
pname = "pyro-ppl";
version = "1.8.6";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit version pname;
hash = "sha256-ANL03ailPmbZVRJNxuSektz1cM071waCUJHbdk2TzQc=";
};
propagatedBuildInputs = [
pyro-api
torch
networkx
opt-einsum
tqdm
];
passthru.optional-dependencies = {
extras = [
graphviz
jupyter
# lap
matplotlib
pandas
pillow
scikit-learn
seaborn
torchvision
# visdom
wget
];
};
# pyro not shipping tests do simple smoke test instead
doCheck = false;
pythonImportsCheck = [
"pyro"
"pyro.distributions"
"pyro.infer"
"pyro.optim"
];
meta = with lib; {
description = "Library for probabilistic modeling and inference";
homepage = "http://pyro.ai";
changelog = "https://github.com/pyro-ppl/pyro/releases/tag/${version}";
license = licenses.asl20;
maintainers = with maintainers; [ teh georgewhewell ];
};
}