Maybe fix ollama.

This commit is contained in:
ediblerope 2026-05-12 19:26:49 +01:00
parent 27be8e3452
commit 219b20a32f

View file

@ -14,11 +14,15 @@
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [ pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
(python-final: python-prev: { (python-final: python-prev: {
langchain = python-prev.langchain.overridePythonAttrs (oldAttrs: { 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;
});
}) })
]; ];
}; };