From ec2571832a84ca923ebb2bacbf8db732f84143f9 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Fri, 18 Jul 2025 16:41:34 +0000 Subject: [PATCH] python312Packages.langgraph-checkpoint: 2.0.26 -> 2.1.1 https://github.com/langchain-ai/langgraph/releases/tag/checkpoint%3D%3D2.1.0 https://github.com/langchain-ai/langgraph/releases/tag/checkpoint%3D%3D2.1.1 --- .../python-modules/langgraph-checkpoint/default.nix | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/langgraph-checkpoint/default.nix b/pkgs/development/python-modules/langgraph-checkpoint/default.nix index 865d68a2b4b6..8c0f1a10c7cb 100644 --- a/pkgs/development/python-modules/langgraph-checkpoint/default.nix +++ b/pkgs/development/python-modules/langgraph-checkpoint/default.nix @@ -4,7 +4,7 @@ fetchFromGitHub, # build system - poetry-core, + hatchling, # dependencies langchain-core, @@ -13,6 +13,8 @@ # testing dataclasses-json, + numpy, + pandas, pytest-asyncio, pytest-mock, pytestCheckHook, @@ -23,19 +25,19 @@ buildPythonPackage rec { pname = "langgraph-checkpoint"; - version = "2.0.26"; + version = "2.1.1"; pyproject = true; src = fetchFromGitHub { owner = "langchain-ai"; repo = "langgraph"; tag = "checkpoint==${version}"; - hash = "sha256-DSkjaxUfpsOg2ex0dgfO/UJ7WiQb5wQsAGgHPTckF6o="; + hash = "sha256-UY3AChShKfOrtOQzOm5vi3Yy3rlBc+TAje9L2L6My/U="; }; sourceRoot = "${src.name}/libs/checkpoint"; - build-system = [ poetry-core ]; + build-system = [ hatchling ]; dependencies = [ langchain-core @@ -48,6 +50,8 @@ buildPythonPackage rec { nativeCheckInputs = [ dataclasses-json + numpy + pandas pytest-asyncio pytest-mock pytestCheckHook