about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/tensorflow-probability/default.nix
blob: aa32904b8d3320a72a4139ffa6f16401a8e2980d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{ lib
, fetchFromGitHub
, buildPythonPackage
, tensorflow
, pytest
}:

buildPythonPackage rec {
  pname = "tensorflow-probability";
  version = "0.6.0";

  src = fetchFromGitHub {
    owner = "tensorflow";
    repo = "probability";
    rev = "v${version}";
    sha256 = "1y210n4asv8j39pk68bdfrz01gddflvzhxbcvj5jw6rjgaagnhvx";
  };

  propagatedBuildInputs = [
    tensorflow
  ];

  checkInputs = [
    pytest
  ];

  # Tests have an invalid import (`tensorflow_probability.opensource`), should
  # be resolved in the next version with
  # https://github.com/tensorflow/probability/commit/77d5957f2f0bdddcb46582799cd9c5c5167a1a40
  doCheck = false;
  checkPhase = ''
    py.test
  '';

  meta = with lib; {
    description = "Library for probabilistic reasoning and statistical analysis";
    homepage = https://www.tensorflow.org/probability/;
    license = licenses.asl20;
    maintainers = with maintainers; [ timokau ];
  };
}