home-assistant: pin ollama at 0.3.3

Last version before pydantic 2.0 dependency was added.
This commit is contained in:
Martin Weinelt
2025-01-01 17:58:19 +01:00
parent 4e4d34a4c8
commit 08ee1fe844
+11
View File
@@ -122,6 +122,17 @@ let
];
});
ollama = super.ollama.overridePythonAttrs (oldAttrs: rec {
version = "0.3.3";
src = fetchFromGitHub {
owner = "ollama";
repo = "ollama-python";
tag = "v${version}";
hash = "sha256-27OJwPvHBxCdaiHk8EQ2s1OeBzgsrzp1MjgKHNgvz+A=";
};
dependencies = with self; [ httpx ];
});
openhomedevice = super.openhomedevice.overridePythonAttrs (oldAttrs: rec {
version = "2.2";
src = fetchFromGitHub {