stripe-cli: 1.23.3 -> 1.23.5 (#375724)
[NixPkgs.git] / pkgs / development / python-modules / edward / default.nix
blob84a0b03b16e8f4c341d0601526d439acb7f7b47b
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   isPy27,
6   pythonAtLeast,
7   keras,
8   numpy,
9   scipy,
10   six,
11   tensorflow,
14 buildPythonPackage rec {
15   pname = "edward";
16   version = "1.3.5";
17   format = "setuptools";
19   disabled = !(isPy27 || pythonAtLeast "3.4");
21   src = fetchPypi {
22     inherit pname version;
23     sha256 = "3818b39e77c26fc1a37767a74fdd5e7d02877d75ed901ead2f40bd03baaa109f";
24   };
26   # disabled for now due to Tensorflow trying to create files in $HOME:
27   doCheck = false;
29   propagatedBuildInputs = [
30     keras
31     numpy
32     scipy
33     six
34     tensorflow
35   ];
37   meta = with lib; {
38     description = "Probabilistic programming language using Tensorflow";
39     homepage = "https://github.com/blei-lab/edward";
40     license = licenses.asl20;
41     maintainers = with maintainers; [ bcdarwin ];
42   };