langgraph-checkpoint-*: Relax dependency on langgraph-checkpoint

This commit is contained in:
Sarah Clark
2024-12-09 18:11:04 -08:00
parent 3535716d80
commit 105e61ab03
3 changed files with 11 additions and 2 deletions
@@ -36,6 +36,9 @@ buildPythonPackage rec {
langgraph-checkpoint
];
# Checkpoint clients are lagging behind langgraph-checkpoint
pythonRelaxDeps = [ "langgraph-checkpoint" ];
pythonImportsCheck = [ "langgraph.checkpoint.duckdb" ];
nativeCheckInputs = [
@@ -48,7 +48,10 @@ buildPythonPackage rec {
psycopg-pool
];
pythonRelaxDeps = [ "psycopg-pool" ];
pythonRelaxDeps = [
"langgraph-checkpoint"
"psycopg-pool"
];
doCheck = !(stdenvNoCC.hostPlatform.isDarwin);
@@ -60,7 +63,7 @@ buildPythonPackage rec {
];
preCheck = ''
export postgresqlTestUserOptions = "LOGIN SUPERUSER"
export postgresqlTestUserOptions="LOGIN SUPERUSER"
'';
disabledTests = [
@@ -34,6 +34,9 @@ buildPythonPackage rec {
langgraph-checkpoint
];
# Checkpoint clients are lagging behind langgraph-checkpoint
pythonRelaxDeps = [ "langgraph-checkpoint" ];
pythonImportsCheck = [ "langgraph.checkpoint.sqlite" ];
nativeCheckInputs = [