File tree Expand file tree Collapse file tree 2 files changed +43
-0
lines changed
development/python-modules/azure-ai-documentintelligence Expand file tree Collapse file tree 2 files changed +43
-0
lines changed Original file line number Diff line number Diff line change 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+ }
Original file line number Diff line number Diff 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 { };
You can’t perform that action at this time.
0 commit comments