open-webui: 0.5.16 -> 0.5.18 (#385546)

This commit is contained in:
Pol Dellaiera
2025-02-27 22:15:58 +01:00
committed by GitHub
3 changed files with 49 additions and 3 deletions
+6 -3
View File
@@ -7,19 +7,19 @@
}:
let
pname = "open-webui";
version = "0.5.16";
version = "0.5.18";
src = fetchFromGitHub {
owner = "open-webui";
repo = "open-webui";
tag = "v${version}";
hash = "sha256-ki8Ac/xMs+wD5GWEgPTe+uIXrYnWtaOwLIxmxscz5sw=";
hash = "sha256-SFw5bCzMSBuzIzZmhA+ylXXkouZ+OSsMBfc7QG7OSLU=";
};
frontend = buildNpmPackage {
inherit pname version src;
npmDepsHash = "sha256-e6pVy06h3QjFTSV62ZsaBrZO+atZbKGsBcCY/gQ2mQo=";
npmDepsHash = "sha256-rEV68SizR7NyYsRzlndg/ulvr8BeiDq3MpiBmaCUn2M=";
# Disabling `pyodide:fetch` as it downloads packages during `buildPhase`
# Until this is solved, running python packages from the browser will not work.
@@ -74,8 +74,10 @@ python312.pkgs.buildPythonApplication rec {
anthropic
apscheduler
argon2-cffi
asgiref
async-timeout
authlib
azure-ai-documentintelligence
azure-identity
azure-storage-blob
bcrypt
@@ -107,6 +109,7 @@ python312.pkgs.buildPythonApplication rec {
langdetect
langfuse
ldap3
loguru
markdown
moto
nltk
@@ -0,0 +1,41 @@
{
lib,
azure-core,
buildPythonPackage,
fetchPypi,
isodate,
typing-extensions,
setuptools,
}:
buildPythonPackage rec {
pname = "azure-ai-documentintelligence";
version = "1.0.0";
pyproject = true;
src = fetchPypi {
pname = "azure_ai_documentintelligence";
inherit version;
hash = "sha256-yLbvwPx+ZdeJLJWFz9JW99iz8rRs7PksdauC5inqwlM=";
};
build-system = [ setuptools ];
dependencies = [
azure-core
isodate
typing-extensions
];
# Tests are not shipped
doCheck = false;
pythonImportsCheck = [ "azure.ai.documentintelligence" ];
meta = {
description = "Azure AI Document Intelligence client library for Python";
homepage = "https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/documentintelligence/azure-ai-documentintelligence/azure/ai/documentintelligence";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ drupol ];
};
}
+2
View File
@@ -1165,6 +1165,8 @@ self: super: with self; {
ayla-iot-unofficial = callPackage ../development/python-modules/ayla-iot-unofficial { };
azure-ai-documentintelligence = callPackage ../development/python-modules/azure-ai-documentintelligence { };
azure-appconfiguration = callPackage ../development/python-modules/azure-appconfiguration { };
azure-applicationinsights = callPackage ../development/python-modules/azure-applicationinsights { };