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 ]; }; }