Commit 56ce3aa0 authored by Paul Meyer's avatar Paul Meyer
Browse files

python3Packages.azure-ai-projects: init at 1.0.0

parent 45cbf908
Loading
Loading
Loading
Loading
+49 −0
Original line number Diff line number Diff line
{
  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;
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -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
      { };