From f56ea4095bb4faf653ac33ea75d9371df7070db4 Mon Sep 17 00:00:00 2001 From: Pavol Rusnak Date: Mon, 10 Feb 2025 16:17:44 +0100 Subject: [PATCH] python3Packages.tensorflow: fix typo --- pkgs/development/python-modules/tensorflow/bin.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/tensorflow/bin.nix b/pkgs/development/python-modules/tensorflow/bin.nix index 2ca3c4c1dc61..b1767cb0eb22 100644 --- a/pkgs/development/python-modules/tensorflow/bin.nix +++ b/pkgs/development/python-modules/tensorflow/bin.nix @@ -64,7 +64,7 @@ buildPythonPackage rec { cuda = lib.optionalString cudaSupport (if isCudaJetson then "_jetson" else "_gpu"); key = "${platform}_${pyVerNoDot}${cuda}"; in - fetchurl (packages.${key} or (throw "tensoflow-bin: unsupported configuration: ${key}")); + fetchurl (packages.${key} or (throw "tensorflow-bin: unsupported configuration: ${key}")); buildInputs = [ llvmPackages.openmp ];