From 6aff8a56b29298b23a7fd0dccd5c564c2ba6046c Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Mon, 27 Dec 2021 03:47:56 +0100 Subject: [PATCH] python310Packages.tensorflow-bin: disable on 3.10 There is no wheel available for this CPython release yet. --- pkgs/development/python-modules/tensorflow/bin.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkgs/development/python-modules/tensorflow/bin.nix b/pkgs/development/python-modules/tensorflow/bin.nix index 221c75112b9b..2556a8039c1b 100644 --- a/pkgs/development/python-modules/tensorflow/bin.nix +++ b/pkgs/development/python-modules/tensorflow/bin.nix @@ -48,6 +48,8 @@ in buildPythonPackage { inherit (packages) version; format = "wheel"; + disabled = pythonAtLeast "3.10"; + src = let pyVerNoDot = lib.strings.stringAsChars (x: if x == "." then "" else x) python.pythonVersion; platform = if stdenv.isDarwin then "mac" else "linux";