Skip to content

Commit f9563d1

Browse files
committed
python312Packages.azure-ai-documentintelligence: init at 1.0.0
1 parent d70eb6a commit f9563d1

File tree

2 files changed

+43
-0
lines changed

2 files changed

+43
-0
lines changed
Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
{
2+
lib,
3+
azure-core,
4+
buildPythonPackage,
5+
fetchPypi,
6+
isodate,
7+
typing-extensions,
8+
setuptools,
9+
}:
10+
11+
buildPythonPackage rec {
12+
pname = "azure-ai-documentintelligence";
13+
version = "1.0.0";
14+
pyproject = true;
15+
16+
src = fetchPypi {
17+
pname = "azure_ai_documentintelligence";
18+
inherit version;
19+
hash = "sha256-yLbvwPx+ZdeJLJWFz9JW99iz8rRs7PksdauC5inqwlM=";
20+
};
21+
22+
build-system = [ setuptools ];
23+
24+
dependencies = [
25+
azure-core
26+
isodate
27+
typing-extensions
28+
];
29+
30+
# Tests are not shipped
31+
doCheck = false;
32+
33+
pythonImportsCheck = [ "azure.ai.documentintelligence" ];
34+
35+
meta = {
36+
description = "Azure AI Document Intelligence client library for Python";
37+
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/documentintelligence/azure-ai-documentintelligence/azure/ai/documentintelligence";
38+
license = lib.licenses.mit;
39+
maintainers = with lib.maintainers; [ drupol ];
40+
};
41+
}

pkgs/top-level/python-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1165,6 +1165,8 @@ self: super: with self; {
11651165

11661166
ayla-iot-unofficial = callPackage ../development/python-modules/ayla-iot-unofficial { };
11671167

1168+
azure-ai-documentintelligence = callPackage ../development/python-modules/azure-ai-documentintelligence { };
1169+
11681170
azure-appconfiguration = callPackage ../development/python-modules/azure-appconfiguration { };
11691171

11701172
azure-applicationinsights = callPackage ../development/python-modules/azure-applicationinsights { };

0 commit comments

Comments
 (0)