From c6fd516649e2da02c4609815216519fa5ed0b4ac Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sat, 24 May 2025 09:31:27 +0200 Subject: [PATCH] python312Packages.onnxruntime-tools: cleanup --- .../python-modules/onnxruntime-tools/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/onnxruntime-tools/default.nix b/pkgs/development/python-modules/onnxruntime-tools/default.nix index 462cdb7f2336..ac4a7b830795 100644 --- a/pkgs/development/python-modules/onnxruntime-tools/default.nix +++ b/pkgs/development/python-modules/onnxruntime-tools/default.nix @@ -29,7 +29,7 @@ buildPythonPackage rec { hash = "sha256-Hf+Ii1xIKsW8Yn8S4QhEX+/LPWAMQ/Y2M5dTFv5hetg="; }; - propagatedBuildInputs = [ + dependencies = [ coloredlogs numpy onnx @@ -42,10 +42,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "onnxruntime_tools" ]; - meta = with lib; { + meta = { description = "Transformers Model Optimization Tool of ONNXRuntime"; homepage = "https://pypi.org/project/onnxruntime-tools/"; - license = with licenses; [ mit ]; - maintainers = with maintainers; [ happysalada ]; + license = with lib.licenses; [ mit ]; + maintainers = with lib.maintainers; [ happysalada ]; }; }