From 19e0df72e07aa92096e652fe3291d3291d5fb0c7 Mon Sep 17 00:00:00 2001 From: Martin Weinelt Date: Wed, 5 Feb 2025 23:11:40 +0100 Subject: [PATCH] Revert "python3Packages.langgraph-checkpoint-duckdb: 2.0.1 -> 2.0.13" This reverts commit 91c51394d899a644a503f457cdd67368b223707b. Changes the tag from checkpointduckdb to checkpointpostgres. --- .../langgraph-checkpoint-duckdb/default.nix | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/langgraph-checkpoint-duckdb/default.nix b/pkgs/development/python-modules/langgraph-checkpoint-duckdb/default.nix index 73e6869a9008..042960f107fe 100644 --- a/pkgs/development/python-modules/langgraph-checkpoint-duckdb/default.nix +++ b/pkgs/development/python-modules/langgraph-checkpoint-duckdb/default.nix @@ -14,7 +14,7 @@ buildPythonPackage rec { pname = "langgraph-checkpoint-duckdb"; - version = "2.0.13"; + version = "2.0.1"; pyproject = true; disabled = pythonOlder "3.9"; @@ -22,8 +22,8 @@ buildPythonPackage rec { src = fetchFromGitHub { owner = "langchain-ai"; repo = "langgraph"; - tag = "checkpointpostgres==${version}"; - hash = "sha256-Vz2ZoikEZuMvt3j9tvBIcXCwWSrCV8MI7x9PIHodl8Y="; + tag = "checkpointduckdb==${version}"; + hash = "sha256-wSrlFBfTcTgyE46uwv9GCyxRT1xVafgWyP2g87KUTAU="; }; sourceRoot = "${src.name}/libs/checkpoint-duckdb"; @@ -53,7 +53,7 @@ buildPythonPackage rec { }; meta = { - changelog = "https://github.com/langchain-ai/langgraph/releases/tag/checkpointduckdb==${src.tag}"; + changelog = "https://github.com/langchain-ai/langgraph/releases/tag/checkpointduckdb==${version}"; description = "Library with a DuckDB implementation of LangGraph checkpoint saver"; homepage = "https://github.com/langchain-ai/langgraph/tree/main/libs/checkpoint-duckdb"; license = lib.licenses.mit;