From 89b85364a3f4b02886d643a580a7c618ee91e418 Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Fri, 28 Mar 2025 17:08:46 +0100 Subject: [PATCH] python312Packages.langgraph-checkpoint-sqlite: relax aiosqlite dependency --- .../langgraph-checkpoint-sqlite/default.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/langgraph-checkpoint-sqlite/default.nix b/pkgs/development/python-modules/langgraph-checkpoint-sqlite/default.nix index d701b54db3f2..7bd37f352d69 100644 --- a/pkgs/development/python-modules/langgraph-checkpoint-sqlite/default.nix +++ b/pkgs/development/python-modules/langgraph-checkpoint-sqlite/default.nix @@ -31,8 +31,12 @@ buildPythonPackage rec { langgraph-checkpoint ]; - # Checkpoint clients are lagging behind langgraph-checkpoint - pythonRelaxDeps = [ "langgraph-checkpoint" ]; + pythonRelaxDeps = [ + "aiosqlite" + + # Checkpoint clients are lagging behind langgraph-checkpoint + "langgraph-checkpoint" + ]; pythonImportsCheck = [ "langgraph.checkpoint.sqlite" ];