File tree Expand file tree Collapse file tree 3 files changed +49
-3
lines changed
development/python-modules/azure-ai-documentintelligence Expand file tree Collapse file tree 3 files changed +49
-3
lines changed Original file line number Diff line number Diff line change 77} :
88let
99 pname = "open-webui" ;
10- version = "0.5.16 " ;
10+ version = "0.5.18 " ;
1111
1212 src = fetchFromGitHub {
1313 owner = "open-webui" ;
1414 repo = "open-webui" ;
1515 tag = "v${ version } " ;
16- hash = "sha256-ki8Ac/xMs+wD5GWEgPTe+uIXrYnWtaOwLIxmxscz5sw =" ;
16+ hash = "sha256-SFw5bCzMSBuzIzZmhA+ylXXkouZ+OSsMBfc7QG7OSLU =" ;
1717 } ;
1818
1919 frontend = buildNpmPackage {
2020 inherit pname version src ;
2121
22- npmDepsHash = "sha256-e6pVy06h3QjFTSV62ZsaBrZO+atZbKGsBcCY/gQ2mQo =" ;
22+ npmDepsHash = "sha256-rEV68SizR7NyYsRzlndg/ulvr8BeiDq3MpiBmaCUn2M =" ;
2323
2424 # Disabling `pyodide:fetch` as it downloads packages during `buildPhase`
2525 # Until this is solved, running python packages from the browser will not work.
@@ -74,8 +74,10 @@ python312.pkgs.buildPythonApplication rec {
7474 anthropic
7575 apscheduler
7676 argon2-cffi
77+ asgiref
7778 async-timeout
7879 authlib
80+ azure-ai-documentintelligence
7981 azure-identity
8082 azure-storage-blob
8183 bcrypt
@@ -107,6 +109,7 @@ python312.pkgs.buildPythonApplication rec {
107109 langdetect
108110 langfuse
109111 ldap3
112+ loguru
110113 markdown
111114 moto
112115 nltk
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