From c393b601797ac5d5038ab45d9ce9bab47947ce10 Mon Sep 17 00:00:00 2001 From: Timo Kaufmann Date: Fri, 21 Jun 2019 18:23:50 +0200 Subject: [PATCH] python.pkgs.dm-sonnet: add estimator dependency Previously was implicitly included in the binary tensorflow release. --- pkgs/development/python-modules/dm-sonnet/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/dm-sonnet/default.nix b/pkgs/development/python-modules/dm-sonnet/default.nix index 1c972cb2aa0..41dc30e4719 100644 --- a/pkgs/development/python-modules/dm-sonnet/default.nix +++ b/pkgs/development/python-modules/dm-sonnet/default.nix @@ -11,6 +11,7 @@ , wrapt , tensorflow , tensorflow-probability +, tensorflow-estimator }: let @@ -73,6 +74,7 @@ in buildPythonPackage rec { wrapt tensorflow tensorflow-probability + tensorflow-estimator ]; # not sure how to properly run the real test suite -- through bazel?