nixpkgs/pkgs/development/python-modules/pyro-ppl/default.nix

40 lines
992 B
Nix
Raw Normal View History

2018-12-23 19:20:39 +00:00
{ buildPythonPackage, fetchPypi, lib, pytorch, contextlib2
, graphviz, networkx, six, opt-einsum, tqdm }:
buildPythonPackage rec {
2020-06-06 06:47:26 +00:00
version = "1.3.1";
2018-12-23 19:20:39 +00:00
pname = "pyro-ppl";
src = fetchPypi {
inherit version pname;
2020-06-06 06:47:26 +00:00
sha256 = "a034d9311d4715a2e8e127e0a4dd2996cbd34c4b85ac57b02b277c176b0a62ff";
2018-12-23 19:20:39 +00:00
};
propagatedBuildInputs = [
pytorch
contextlib2
# TODO(tom): graphviz pulls in a lot of dependencies - make
# optional when some time to figure out how.
graphviz
networkx
six
opt-einsum
tqdm
];
# pyro not shipping tests do simple smoke test instead
checkPhase = ''
python -c "import pyro"
python -c "import pyro.distributions"
python -c "import pyro.infer"
python -c "import pyro.optim"
'';
meta = {
description = "A Python library for probabilistic modeling and inference";
homepage = "http://pyro.ai";
2018-12-23 19:20:39 +00:00
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ teh ];
broken = true;
2018-12-23 19:20:39 +00:00
};
}