blob: 8533cde41ec8694538b666dce465d4a2101034e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
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;
};
}
|