Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

open-webui: 0.3.5 -> 0.3.7 #323204

Merged
merged 1 commit into from
Jun 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 9 additions & 3 deletions pkgs/by-name/op/open-webui/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@
}:
let
pname = "open-webui";
version = "0.3.5";
version = "0.3.7";

src = fetchFromGitHub {
owner = "open-webui";
repo = "open-webui";
rev = "v${version}";
hash = "sha256-copxy9fgHTHfF14bh9ddF4eTWx2GP2Mkw3lr+1NKKkI=";
hash = "sha256-tsJILQ+CuVy8LYSixYNJAwSIZtRegrXXvGzvyf7Knd0=";
};

frontend = buildNpmPackage {
inherit pname version src;

npmDepsHash = "sha256-whddW3ThC/zlttqhV3wf15roaCgp0H/BELWLs9/c5Jc=";
npmDepsHash = "sha256-fB5gvC2sLfH2dJJi+CYyF7PRg+GhZDavhKgeRStaR7I=";

# Disabling `pyodide:fetch` as it downloads packages during `buildPhase`
# Until this is solved, running python packages from the browser will not work.
Expand Down Expand Up @@ -63,8 +63,10 @@ python3.pkgs.buildPythonApplication rec {

dependencies = with python3.pkgs; [
aiohttp
anthropic
apscheduler
argon2-cffi
authlib
bcrypt
beautifulsoup4
black
Expand All @@ -85,6 +87,7 @@ python3.pkgs.buildPythonApplication rec {
langchain-community
langfuse
markdown
openai
opencv4
openpyxl
pandas
Expand All @@ -94,6 +97,7 @@ python3.pkgs.buildPythonApplication rec {
psycopg2
pydub
pyjwt
pymongo
pymysql
pypandoc
pypdf
Expand All @@ -105,8 +109,10 @@ python3.pkgs.buildPythonApplication rec {
pyxlsb
rank-bm25
rapidocr-onnxruntime
redis
requests
sentence-transformers
sqlalchemy
unstructured
uvicorn
validators
Expand Down
2 changes: 1 addition & 1 deletion pkgs/development/python-modules/jaxlib/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ let
{ x86_64-linux = "sha256-vUoAPkYKEnHkV4fw6BI0mCeuP2e8BMCJnVuZMm9LwSA="; }
else
{
x86_64-linux = "sha256-R1TIIyyyLlDqAlUkuhJhtyTxZMra2q5S/jX0OCInsEQ=";
x86_64-linux = "sha256-R5Bm+0GYN1zJ1aEUBW76907MxYKAIawHHJoIb1RdsKE=";
aarch64-linux = "sha256-P5JEmJljN1DeRA0dNkzyosKzRnJH+5SD2aWdV5JsoiY=";
}
).${effectiveStdenv.system} or (throw "jaxlib: unsupported system: ${effectiveStdenv.system}");
Expand Down