1 { lib, buildPythonPackage, fetchPypi, isPy27, pythonAtLeast
2 , keras, numpy, scipy, six, tensorflow }:
4 buildPythonPackage rec {
8 disabled = !(isPy27 || pythonAtLeast "3.4");
11 inherit pname version;
12 sha256 = "3818b39e77c26fc1a37767a74fdd5e7d02877d75ed901ead2f40bd03baaa109f";
15 # disabled for now due to Tensorflow trying to create files in $HOME:
18 propagatedBuildInputs = [ keras numpy scipy six tensorflow ];
21 description = "Probabilistic programming language using Tensorflow";
22 homepage = "https://github.com/blei-lab/edward";
23 license = licenses.asl20;
24 maintainers = with maintainers; [ bcdarwin ];