From 007dd541bd73dee0b09d5b3d28d01d43955d0a9d Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Mon, 9 Feb 2026 22:47:14 +0000 Subject: [PATCH] python3Packages.guidance: 0.3.0 -> 0.3.1 Diff: https://github.com/guidance-ai/guidance/compare/0.3.0...0.3.1 Changelog: https://github.com/guidance-ai/guidance/releases/tag/0.3.1 --- pkgs/development/python-modules/guidance/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/guidance/default.nix b/pkgs/development/python-modules/guidance/default.nix index 7755dff744a6..a99061b9104c 100644 --- a/pkgs/development/python-modules/guidance/default.nix +++ b/pkgs/development/python-modules/guidance/default.nix @@ -28,16 +28,16 @@ writableTmpDirAsHomeHook, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "guidance"; - version = "0.3.0"; + version = "0.3.1"; pyproject = true; src = fetchFromGitHub { owner = "guidance-ai"; repo = "guidance"; - tag = version; - hash = "sha256-ZKHCnLGZdpr/R+vu7crijnKUFc+LMMxIdN9f6hYL7dk="; + tag = finalAttrs.version; + hash = "sha256-g0Vb5qcEvGY4S/LzhQvYtLiN1gIDBhPIgdzenSYX7zQ="; }; build-system = [ @@ -107,8 +107,8 @@ buildPythonPackage rec { meta = { description = "Guidance language for controlling large language models"; homepage = "https://github.com/guidance-ai/guidance"; - changelog = "https://github.com/guidance-ai/guidance/releases/tag/${src.tag}"; + changelog = "https://github.com/guidance-ai/guidance/releases/tag/${finalAttrs.src.tag}"; license = lib.licenses.mit; maintainers = with lib.maintainers; [ natsukium ]; }; -} +})