14 buildPythonPackage rec {
15 pname = "langgraph-checkpoint-sqlite";
19 disabled = pythonOlder "3.9";
21 src = fetchFromGitHub {
22 owner = "langchain-ai";
24 tag = "checkpointsqlite==${version}";
25 hash = "sha256-dh+cjcOp6rGFntz82VNfVyetcrQBdBFdXk5xFb0aR5c=";
28 sourceRoot = "${src.name}/libs/checkpoint-sqlite";
30 build-system = [ poetry-core ];
37 # Checkpoint clients are lagging behind langgraph-checkpoint
38 pythonRelaxDeps = [ "langgraph-checkpoint" ];
40 pythonImportsCheck = [ "langgraph.checkpoint.sqlite" ];
48 updateScript = langgraph-sdk.updateScript;
52 changelog = "https://github.com/langchain-ai/langgraph/releases/tag/checkpointsqlite==${version}";
53 description = "Library with a SQLite implementation of LangGraph checkpoint saver";
54 homepage = "https://github.com/langchain-ai/langgraph/tree/main/libs/checkpoint-sqlite";
55 license = lib.licenses.mit;
56 maintainers = with lib.maintainers; [