pythonPackages.tensorflow-bin: disable for python 3.8

This commit is contained in:
Frederik Rietdijk 2019-10-16 11:32:31 +02:00
parent 0031003765
commit d2c1c51ebc

View file

@ -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;