blob: e3cbc9ef1bb5ed5db1a8949b1ca59d859608732a (
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
46
47
48
49
|
{
lib,
buildPythonPackage,
fetchPypi,
setuptools,
wheel,
azure-core,
azure-storage-blob,
azure-ai-agents,
isodate,
typing-extensions,
azure-cli,
}:
buildPythonPackage rec {
pname = "azure-ai-projects";
version = "1.0.0";
pyproject = true;
src = fetchPypi {
pname = "azure_ai_projects";
inherit version;
hash = "sha256-tfAwJMzw/VQ/vg9avMdORbFezMHHGrh/xxxjBh2f1jw=";
};
build-system = [
setuptools
wheel
];
dependencies = [
azure-core
azure-storage-blob
azure-ai-agents
isodate
typing-extensions
];
pythonImportsCheck = [
"azure.ai.projects"
];
meta = {
description = "Microsoft Azure AI Projects Client Library for Python";
homepage = "https://pypi.org/project/azure-ai-projects/#history";
license = lib.licenses.mit;
maintainers = azure-cli.meta.maintainers;
};
}
|