summary refs log tree commit diff
path: root/pkgs/development/python-modules
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2019-10-16 11:32:31 +0200
committerFrederik Rietdijk <fridh@fridh.nl>2019-10-16 11:32:31 +0200
commitcc9505aab1dbc0cca1be1ce81af5842271306a92 (patch)
tree592ac21e85ee80fc154ae86516a17305b1eb10e3 /pkgs/development/python-modules
parent14405a0bfd945cea4c970d6d8c6c8a589c70296f (diff)
downloadnixpkgs-cc9505aab1dbc0cca1be1ce81af5842271306a92.tar
nixpkgs-cc9505aab1dbc0cca1be1ce81af5842271306a92.tar.gz
nixpkgs-cc9505aab1dbc0cca1be1ce81af5842271306a92.tar.bz2
nixpkgs-cc9505aab1dbc0cca1be1ce81af5842271306a92.tar.lz
nixpkgs-cc9505aab1dbc0cca1be1ce81af5842271306a92.tar.xz
nixpkgs-cc9505aab1dbc0cca1be1ce81af5842271306a92.tar.zst
nixpkgs-cc9505aab1dbc0cca1be1ce81af5842271306a92.zip
pythonPackages.tensorflow-bin: disable for python 3.8
Diffstat (limited to 'pkgs/development/python-modules')
-rw-r--r--pkgs/development/python-modules/tensorflow/bin.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/pkgs/development/python-modules/tensorflow/bin.nix b/pkgs/development/python-modules/tensorflow/bin.nix
index db2308a0be8..38fec9adc7d 100644
--- a/pkgs/development/python-modules/tensorflow/bin.nix
+++ b/pkgs/development/python-modules/tensorflow/bin.nix
@@ -2,7 +2,7 @@
 , lib
 , fetchurl
 , buildPythonPackage
-, isPy3k, pythonOlder
+, isPy3k, pythonOlder, isPy38
 , astor
 , gast
 , google-pasta
@@ -51,6 +51,8 @@ in buildPythonPackage {
   inherit (packages) version;
   format = "wheel";
 
+  disabled = isPy38;
+
   src = let
     pyVerNoDot = lib.strings.stringAsChars (x: if x == "." then "" else x) python.pythonVersion;
     pyver = if stdenv.isDarwin then builtins.substring 0 1 pyVerNoDot else pyVerNoDot;