From 45cbf908ed4f4407d0c28ab072366ebbfaab1869 Mon Sep 17 00:00:00 2001 From: Paul Meyer Date: Tue, 18 Nov 2025 10:18:31 +0100 Subject: [PATCH] python3Packages.azure-ai-agents: init at 1.1.0 Signed-off-by: Paul Meyer --- .../azure-ai-agents/default.nix | 45 +++++++++++++++++++ pkgs/top-level/python-packages.nix | 2 + 2 files changed, 47 insertions(+) create mode 100644 pkgs/development/python-modules/azure-ai-agents/default.nix diff --git a/pkgs/development/python-modules/azure-ai-agents/default.nix b/pkgs/development/python-modules/azure-ai-agents/default.nix new file mode 100644 index 000000000000..8533cde41ec8 --- /dev/null +++ b/pkgs/development/python-modules/azure-ai-agents/default.nix @@ -0,0 +1,45 @@ +{ + lib, + buildPythonPackage, + fetchPypi, + setuptools, + wheel, + azure-core, + isodate, + typing-extensions, + azure-cli, +}: + +buildPythonPackage rec { + pname = "azure-ai-agents"; + version = "1.1.0"; + pyproject = true; + + src = fetchPypi { + pname = "azure_ai_agents"; + inherit version; + hash = "sha256-651yJigtAyBsP6s/PuCi/HHgrTjlLS9PGaksVu2VGuo="; + }; + + build-system = [ + setuptools + wheel + ]; + + dependencies = [ + azure-core + isodate + typing-extensions + ]; + + pythonImportsCheck = [ + "azure.ai.agents" + ]; + + meta = { + description = "Microsoft Corporation Azure AI Agents Client Library for Python"; + homepage = "https://pypi.org/project/azure-ai-agents"; + license = lib.licenses.mit; + maintainers = azure-cli.meta.maintainers; + }; +} diff --git a/pkgs/top-level/python-packages.nix b/pkgs/top-level/python-packages.nix index 79d3dc79a613..a6f0ee01ef06 100644 --- a/pkgs/top-level/python-packages.nix +++ b/pkgs/top-level/python-packages.nix @@ -1287,6 +1287,8 @@ self: super: with self; { ayla-iot-unofficial = callPackage ../development/python-modules/ayla-iot-unofficial { }; + azure-ai-agents = callPackage ../development/python-modules/azure-ai-agents { }; + azure-ai-documentintelligence = callPackage ../development/python-modules/azure-ai-documentintelligence { };