Pol Dellaiera 2024-10-24 22:47:25 +02:00
parent d6b16ac307
commit 719d463c10

View File

@ -2,24 +2,24 @@
lib,
buildNpmPackage,
fetchFromGitHub,
python3,
python311,
nixosTests,
}:
let
pname = "open-webui";
version = "0.3.32";
version = "0.3.35";
src = fetchFromGitHub {
owner = "open-webui";
repo = "open-webui";
rev = "refs/tags/v${version}";
hash = "sha256-XpPaMGn+JA3Rq+Eb97IGWMLAR+0pI+ZJRxOTmxIMPZg=";
hash = "sha256-H46qoOEajPKRU/Lbd6r7r0vRjWSd7uGoA0deaDv6HSw=";
};
frontend = buildNpmPackage {
inherit pname version src;
npmDepsHash = "sha256-tAPI/H5/lv+RuDZ68lL/cZHcOs8H6ZxXSwiFvkp0y4A=";
npmDepsHash = "sha256-ohWSfwZfC/jfOpnNSqsvMyYnukk3Xa3Tq32PAl8Ds60=";
# Disabling `pyodide:fetch` as it downloads packages during `buildPhase`
# Until this is solved, running python packages from the browser will not work.
@ -29,6 +29,7 @@ let
'';
env.CYPRESS_INSTALL_BINARY = "0"; # disallow cypress from downloading binaries in sandbox
env.ONNXRUNTIME_NODE_INSTALL_CUDA = "skip";
installPhase = ''
runHook preInstall
@ -40,7 +41,7 @@ let
'';
};
in
python3.pkgs.buildPythonApplication rec {
python311.pkgs.buildPythonApplication rec {
inherit pname version src;
pyproject = true;
@ -64,12 +65,13 @@ python3.pkgs.buildPythonApplication rec {
"pytest-docker"
];
dependencies = with python3.pkgs; [
dependencies = with python311.pkgs; [
aiohttp
alembic
anthropic
apscheduler
argon2-cffi
async-timeout
authlib
bcrypt
beautifulsoup4
@ -88,6 +90,7 @@ python3.pkgs.buildPythonApplication rec {
flask-cors
fpdf2
ftfy
qdrant-client
google-generativeai
googleapis-common-protos
langchain
@ -107,6 +110,7 @@ python3.pkgs.buildPythonApplication rec {
psycopg2
pydub
pyjwt
pymdown-extensions
pymilvus
pymongo
pymysql
@ -128,11 +132,12 @@ python3.pkgs.buildPythonApplication rec {
unstructured
uvicorn
validators
xhtml2pdf
xlrd
youtube-transcript-api
];
build-system = with python3.pkgs; [ hatchling ];
build-system = with python311.pkgs; [ hatchling ];
pythonImportsCheck = [ "open_webui" ];