56ce3aa0c9
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
50 lines
878 B
Nix
50 lines
878 B
Nix
{
|
|
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;
|
|
};
|
|
}
|