python312Packages.langgraph-checkpoint-sqlite: relax aiosqlite dependency (#394038)

This commit is contained in:
Gaétan Lepage
2025-03-28 17:20:24 +01:00
committed by GitHub
@@ -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" ];