Maybe fix failing dependency?

This commit is contained in:
ediblerope 2026-05-12 15:31:26 +01:00
parent f202e7001e
commit 27be8e3452

View file

@ -8,13 +8,18 @@
services.open-webui.enable = true;
services.open-webui.port = 8888;
#testing
nixpkgs.overlays = [
(final: prev: {
valkey = prev.valkey.overrideAttrs (oldAttrs: {
# We need to reach into the python package set
pythonPackagesExtensions = prev.pythonPackagesExtensions ++ [
(python-final: python-prev: {
langchain = python-prev.langchain.overridePythonAttrs (oldAttrs: {
# This disables the checkPhase (running tests) for langchain
doCheck = false;
});
})
];
})
];
};
}