From dc67e303686e3237d334974aa4fb517ca459e7c7 Mon Sep 17 00:00:00 2001 From: Dionysis Grigoropoulos Date: Fri, 9 May 2025 00:02:39 +0300 Subject: [PATCH] python3Packages.llm-ollama: 0.9.1 -> 0.10.0 Diff: https://github.com/taketwo/llm-ollama/compare/0.9.1...0.10.0 Changelog: https://github.com/taketwo/llm-ollama/releases/tag/0.10.0 --- pkgs/development/python-modules/llm-ollama/default.nix | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/llm-ollama/default.nix b/pkgs/development/python-modules/llm-ollama/default.nix index 6c255aa76c55..e8d13d4926c6 100644 --- a/pkgs/development/python-modules/llm-ollama/default.nix +++ b/pkgs/development/python-modules/llm-ollama/default.nix @@ -16,19 +16,20 @@ # tests pytestCheckHook, pytest-asyncio, + pytest-mock, writableTmpDirAsHomeHook, }: buildPythonPackage rec { pname = "llm-ollama"; - version = "0.9.1"; + version = "0.10.0"; pyproject = true; src = fetchFromGitHub { owner = "taketwo"; repo = "llm-ollama"; tag = version; - hash = "sha256-NAJ0tfGRQOxYVAi2X0AI2d9+wyUS3ro1bfMSViZjaR0="; + hash = "sha256-IA9Tb82XB+Gr6YwMVqzsw1dPtT3GWK2W/ZtuDVznF1A"; }; build-system = [ @@ -46,6 +47,7 @@ buildPythonPackage rec { nativeCheckInputs = [ pytestCheckHook pytest-asyncio + pytest-mock writableTmpDirAsHomeHook ];