pythonPackages.tensorflow-bin: disable for python 3.8

This commit is contained in:
Frederik Rietdijk 2019-10-16 11:32:31 +02:00
parent 14405a0bfd
commit cc9505aab1
1 changed files with 3 additions and 1 deletions

View File

@ -2,7 +2,7 @@
, lib , lib
, fetchurl , fetchurl
, buildPythonPackage , buildPythonPackage
, isPy3k, pythonOlder , isPy3k, pythonOlder, isPy38
, astor , astor
, gast , gast
, google-pasta , google-pasta
@ -51,6 +51,8 @@ in buildPythonPackage {
inherit (packages) version; inherit (packages) version;
format = "wheel"; format = "wheel";
disabled = isPy38;
src = let src = let
pyVerNoDot = lib.strings.stringAsChars (x: if x == "." then "" else x) python.pythonVersion; pyVerNoDot = lib.strings.stringAsChars (x: if x == "." then "" else x) python.pythonVersion;
pyver = if stdenv.isDarwin then builtins.substring 0 1 pyVerNoDot else pyVerNoDot; pyver = if stdenv.isDarwin then builtins.substring 0 1 pyVerNoDot else pyVerNoDot;