From 8b0c8651f446efabf9bc19240572d86636369ddb Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Sat, 7 Mar 2026 10:59:29 -0800 Subject: [PATCH] python3Packages.langgraph-checkpoint: 4.0.0 -> 4.0.1 --- .../langgraph-checkpoint/default.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/pkgs/development/python-modules/langgraph-checkpoint/default.nix b/pkgs/development/python-modules/langgraph-checkpoint/default.nix index 4d1eb363635c..28f425b623b2 100644 --- a/pkgs/development/python-modules/langgraph-checkpoint/default.nix +++ b/pkgs/development/python-modules/langgraph-checkpoint/default.nix @@ -15,6 +15,7 @@ dataclasses-json, numpy, pandas, + pycryptodome, pytest-asyncio, pytest-mock, pytestCheckHook, @@ -24,19 +25,19 @@ gitUpdater, }: -buildPythonPackage rec { +buildPythonPackage (finalAttrs: { pname = "langgraph-checkpoint"; - version = "4.0.0"; + version = "4.0.1"; pyproject = true; src = fetchFromGitHub { owner = "langchain-ai"; repo = "langgraph"; - tag = "checkpoint==${version}"; - hash = "sha256-IE9Y+kFkDN49SuwvTNwa2kK+Hig18sJPZmZCqHUP3DM="; + tag = "checkpoint==${finalAttrs.version}"; + hash = "sha256-NJSmpVshj/x6ws+jFYXGarNKNztbk5OIIMA1neFOyIY="; }; - sourceRoot = "${src.name}/libs/checkpoint"; + sourceRoot = "${finalAttrs.src.name}/libs/checkpoint"; build-system = [ hatchling ]; @@ -53,6 +54,7 @@ buildPythonPackage rec { dataclasses-json numpy pandas + pycryptodome pytest-asyncio pytest-mock pytestCheckHook @@ -68,7 +70,7 @@ buildPythonPackage rec { }; meta = { - changelog = "https://github.com/langchain-ai/langgraph/releases/tag/${src.tag}"; + changelog = "https://github.com/langchain-ai/langgraph/releases/tag/${finalAttrs.src.tag}"; description = "Library with base interfaces for LangGraph checkpoint savers"; homepage = "https://github.com/langchain-ai/langgraph/tree/main/libs/checkpoint"; license = lib.licenses.mit; @@ -76,4 +78,4 @@ buildPythonPackage rec { sarahec ]; }; -} +})