python3Packages.tensorflow: fix typo

This commit is contained in:
Pavol Rusnak
2025-02-10 16:17:44 +01:00
parent 5a50bc399f
commit f56ea4095b
@@ -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 ];