python3Packages.azure-ai-projects: init at 1.0.0
Signed-off-by: Paul Meyer <katexochen0@gmail.com>
This commit is contained in:
@@ -0,0 +1,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;
|
||||
};
|
||||
}
|
||||
@@ -1293,6 +1293,8 @@ self: super: with self; {
|
||||
callPackage ../development/python-modules/azure-ai-documentintelligence
|
||||
{ };
|
||||
|
||||
azure-ai-projects = callPackage ../development/python-modules/azure-ai-projects { };
|
||||
|
||||
azure-ai-vision-imageanalysis =
|
||||
callPackage ../development/python-modules/azure-ai-vision-imageanalysis
|
||||
{ };
|
||||
|
||||
Reference in New Issue
Block a user