From 30256edd67616862422ecf3bcf30542ef01ea363 Mon Sep 17 00:00:00 2001 From: Sarah Clark Date: Wed, 6 Aug 2025 10:38:06 -0700 Subject: [PATCH] python3Packages.langgraph-checkpoint: disable failing test due to bad float comparison --- .../python-modules/langgraph-checkpoint/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/python-modules/langgraph-checkpoint/default.nix b/pkgs/development/python-modules/langgraph-checkpoint/default.nix index 8c0f1a10c7cb..d6518940027a 100644 --- a/pkgs/development/python-modules/langgraph-checkpoint/default.nix +++ b/pkgs/development/python-modules/langgraph-checkpoint/default.nix @@ -57,6 +57,12 @@ buildPythonPackage rec { pytestCheckHook ]; + disabledTests = [ + # assert 1.0000000000000004 == 1.0000000000000002 + # https://github.com/langchain-ai/langgraph/issues/5845 + "test_embed_with_path" + ]; + passthru.updateScript = gitUpdater { rev-prefix = "checkpoint=="; };