pythonPackages.tensorflow-bin: disable for python 3.8
This commit is contained in:
parent
14405a0bfd
commit
cc9505aab1
1 changed files with 3 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue