python3Packages.onnxruntime: add openvino support

This commit is contained in:
winston
2026-06-29 20:00:49 +02:00
parent 2ae8618b98
commit a175b672b6
2 changed files with 3 additions and 0 deletions
@@ -10,6 +10,7 @@
re2,
# dependencies
openvino,
coloredlogs,
numpy,
packaging,
@@ -76,6 +77,7 @@ buildPythonPackage {
++ lib.optionals onnxruntime.passthru.ncclSupport [
nccl # libnccl.so.XX
]
++ lib.optionals stdenv.hostPlatform.isLinux [ openvino ]
);
dependencies = [
+1
View File
@@ -11835,6 +11835,7 @@ self: super: with self; {
python3Packages = self;
pythonSupport = true;
};
inherit (pkgs) openvino;
};
onnxruntime-tools = callPackage ../development/python-modules/onnxruntime-tools { };