summary refs log tree commit diff
diff options
context:
space:
mode:
authorJonathan Ringer <jonringer117@gmail.com>2020-10-20 09:10:16 -0700
committerJonathan Ringer <jonringer@users.noreply.github.com>2020-10-30 23:11:03 -0700
commitb8f45c32f89931b68fda102649d3cb6f4e17fa6a (patch)
tree7618a206e7d4eecd570979785279861e9cd0398f
parentec38df81a9c189c5d5cd1286bba1f43dc0ed978d (diff)
downloadnixpkgs-b8f45c32f89931b68fda102649d3cb6f4e17fa6a.tar
nixpkgs-b8f45c32f89931b68fda102649d3cb6f4e17fa6a.tar.gz
nixpkgs-b8f45c32f89931b68fda102649d3cb6f4e17fa6a.tar.bz2
nixpkgs-b8f45c32f89931b68fda102649d3cb6f4e17fa6a.tar.lz
nixpkgs-b8f45c32f89931b68fda102649d3cb6f4e17fa6a.tar.xz
nixpkgs-b8f45c32f89931b68fda102649d3cb6f4e17fa6a.tar.zst
nixpkgs-b8f45c32f89931b68fda102649d3cb6f4e17fa6a.zip
python3Packages.tensorflow: break if gast not correct
-rw-r--r--pkgs/development/python-modules/tensorflow/1/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/tensorflow/1/default.nix b/pkgs/development/python-modules/tensorflow/1/default.nix
index 5df3ad32afb..599f809f864 100644
--- a/pkgs/development/python-modules/tensorflow/1/default.nix
+++ b/pkgs/development/python-modules/tensorflow/1/default.nix
@@ -445,5 +445,7 @@ in buildPythonPackage {
     libtensorflow = bazel-build.out;
   };
 
-  inherit (bazel-build) meta;
+  meta = bazel-build.meta // {
+    broken = gast.version != "0.3.2";
+  };
 }