From 219b20a32fe4a7f0424293f833475dc95eda5e53 Mon Sep 17 00:00:00 2001 From: ediblerope Date: Tue, 12 May 2026 19:26:49 +0100 Subject: [PATCH] Maybe fix ollama. --- services/ollama.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/services/ollama.nix b/services/ollama.nix index 4e78c15..0ffe6ed 100644 --- a/services/ollama.nix +++ b/services/ollama.nix @@ -14,11 +14,15 @@ pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [ (python-final: python-prev: { langchain = python-prev.langchain.overridePythonAttrs (oldAttrs: { - # This disables the checkPhase (running tests) for langchain - doCheck = false; + doCheck = false; }); }) ]; + # valkey 8.1.x has a flaky replication integration test that + # fails non-deterministically; skip checks to unblock open-webui. + valkey = prev.valkey.overrideAttrs (oldAttrs: { + doCheck = false; + }); }) ]; };