python312Packages.langgraph-checkpoint-sqlite: relax aiosqlite dependency

This commit is contained in:
Gaetan Lepage
2025-03-28 17:08:46 +01:00
parent 368ccd5fd1
commit 89b85364a3
@@ -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" ];