From 30d34cbd89cff79c65e9dbf065f250f43dbc84e6 Mon Sep 17 00:00:00 2001 From: jaredmontoya <49511278+jaredmontoya@users.noreply.github.com> Date: Tue, 31 Mar 2026 11:40:16 +0200 Subject: [PATCH] python3Packages.onnx-asr: 0.10.2 -> 0.11.0 Release Notes: https://github.com/istupakov/onnx-asr/releases/tag/v0.11.0 Changelog: https://github.com/istupakov/onnx-asr/compare/v0.10.2...v0.11.0 --- .../python-modules/onnx-asr/default.nix | 16 +++++----------- 1 file changed, 5 insertions(+), 11 deletions(-) diff --git a/pkgs/development/python-modules/onnx-asr/default.nix b/pkgs/development/python-modules/onnx-asr/default.nix index 2cfa1dc15f07..a73f4879a6ff 100644 --- a/pkgs/development/python-modules/onnx-asr/default.nix +++ b/pkgs/development/python-modules/onnx-asr/default.nix @@ -10,11 +10,9 @@ # build-time deps for the custom hatch build hook that generates # ONNX preprocessor models (listed in pyproject.toml [dependency-groups] build) + ml-dtypes, numpy, - onnx, onnxscript, - torch, - torchaudio, # dependencies onnxruntime, @@ -25,26 +23,22 @@ buildPythonPackage (finalAttrs: { pname = "onnx-asr"; - version = "0.10.2"; + version = "0.11.0"; pyproject = true; src = fetchFromGitHub { owner = "istupakov"; repo = "onnx-asr"; tag = "v${finalAttrs.version}"; - hash = "sha256-KumdelY9oNMAEBSGVdvbBH6SYi93n2cA/eEqaE8MmIU="; + hash = "sha256-gi5U56ZPSo0bJ0Fmi8nebvIXENZWwX4lofk5vKV8gag="; }; build-system = [ - hatchling hatch-vcs - # The custom hatch build hook (hatch_build.py) generates ONNX preprocessor - # models at build time using these dependencies. + hatchling + ml-dtypes numpy - onnx onnxscript - torch - torchaudio ]; dependencies = [