1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-24 14:41:17 +00:00

python.pkgs.tensorflow-probability: init at 0.6.0

Needed as a dependency for dm-sonnet.
This commit is contained in:
Timo Kaufmann 2019-04-12 17:48:57 +02:00
parent bae324acb7
commit 1d00bb1375
2 changed files with 43 additions and 0 deletions

View file

@ -0,0 +1,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 ];
};
}

View file

@ -5143,6 +5143,8 @@ in {
tensorflow-estimator = callPackage ../development/python-modules/tensorflow-estimator { };
tensorflow-probability = callPackage ../development/python-modules/tensorflow-probability { };
tensorflow-tensorboard = callPackage ../development/python-modules/tensorflow-tensorboard { };
tensorflow =