pythonPackages.tensorflow-bin: disable for python 3.8
This commit is contained in:
parent
14405a0bfd
commit
cc9505aab1
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue