python.pkgs.{tensorflow,tensorflow-estimator,tensorflow-tensorboard}: 1.14.0 -> 1.15.0

This commit is contained in:
Timo Kaufmann
2019-10-07 10:14:16 +02:00
parent 1395327b4e
commit 152d2fd22c
3 changed files with 28 additions and 21 deletions

View File

@@ -6,13 +6,14 @@
buildPythonPackage rec {
pname = "tensorflow-estimator";
version = "1.14.0";
# This is effectively 1.15.0. Upstream tagged 1.15.0 by mistake before actually updating the version in setup.py, which is why this tag is called 1.15.1.
version = "1.15.1";
format = "wheel";
src = fetchPypi {
pname = "tensorflow_estimator";
inherit version format;
sha256 = "14irpsyj14vn2dpwr601f54058wywci1pv0hss8s01rl0rk3y1ya";
sha256 = "1fc61wmc0w22frs79j2x4g6wnv5g21xc6rix1g4bsvy9qfvvylw8";
};
propagatedBuildInputs = [ mock numpy absl-py ];