From 15ad56d718b126881097221c132a1f83e2e518b8 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Sat, 17 May 2025 17:13:45 -0700 Subject: [PATCH] python3Packages.langgraph-checkpoint: cleanup Audited tests, removed unneded test disabling, simplified update regex. --- .../python-modules/langgraph-checkpoint/default.nix | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/pkgs/development/python-modules/langgraph-checkpoint/default.nix b/pkgs/development/python-modules/langgraph-checkpoint/default.nix index 7409ddd404ed..f2cfee22c69f 100644 --- a/pkgs/development/python-modules/langgraph-checkpoint/default.nix +++ b/pkgs/development/python-modules/langgraph-checkpoint/default.nix @@ -53,15 +53,10 @@ buildPythonPackage rec { pytestCheckHook ]; - disabledTests = [ - # AssertionError - "test_serde_jsonplus" - ]; - passthru.updateScript = nix-update-script { extraArgs = [ "--version-regex" - "checkpoint==(\\d+\\.\\d+\\.\\d+)" + "checkpoint==([0-9.]+)" ]; };