mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-14 19:58:30 +01:00
95 lines
2 KiB
Nix
95 lines
2 KiB
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchFromGitHub,
|
|
|
|
# build system
|
|
hatchling,
|
|
|
|
# dependencies
|
|
aiosqlite,
|
|
langgraph-checkpoint,
|
|
sqlite-vec,
|
|
|
|
# testing
|
|
pytest-asyncio,
|
|
pytestCheckHook,
|
|
sqlite,
|
|
|
|
# passthru
|
|
gitUpdater,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "langgraph-checkpoint-sqlite";
|
|
version = "3.0.0";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "langchain-ai";
|
|
repo = "langgraph";
|
|
tag = "checkpointsqlite==${version}";
|
|
hash = "sha256-YjO8KfDx7lZOps+dG7CPsY7LOqhKIBdfCXexPsR2pB4=";
|
|
};
|
|
|
|
sourceRoot = "${src.name}/libs/checkpoint-sqlite";
|
|
|
|
build-system = [ hatchling ];
|
|
|
|
dependencies = [
|
|
aiosqlite
|
|
langgraph-checkpoint
|
|
sqlite-vec
|
|
];
|
|
|
|
pythonRelaxDeps = [
|
|
"aiosqlite"
|
|
|
|
# Bug: version is showing up as 0.0.0
|
|
# https://github.com/NixOS/nixpkgs/issues/427197
|
|
"sqlite-vec"
|
|
|
|
# Checkpoint clients are lagging behind langgraph-checkpoint
|
|
"langgraph-checkpoint"
|
|
];
|
|
|
|
pythonImportsCheck = [ "langgraph.checkpoint.sqlite" ];
|
|
|
|
nativeCheckInputs = [
|
|
pytest-asyncio
|
|
pytestCheckHook
|
|
sqlite
|
|
];
|
|
|
|
disabledTestPaths = [
|
|
# Failed: 'flaky' not found in `markers` configuration option
|
|
"tests/test_ttl.py"
|
|
];
|
|
|
|
disabledTests = [
|
|
# AssertionError: (fails object comparison due to extra runtime fields)
|
|
# https://github.com/langchain-ai/langgraph/issues/5604
|
|
"test_combined_metadata"
|
|
"test_asearch"
|
|
"test_search"
|
|
];
|
|
|
|
passthru = {
|
|
# python updater script sets the wrong tag
|
|
skipBulkUpdate = true;
|
|
updateScript = gitUpdater {
|
|
rev-prefix = "checkpointsqlite==";
|
|
};
|
|
};
|
|
|
|
meta = {
|
|
changelog = "https://github.com/langchain-ai/langgraph/releases/tag/${src.tag}";
|
|
description = "Library with a SQLite implementation of LangGraph checkpoint saver";
|
|
homepage = "https://github.com/langchain-ai/langgraph/tree/main/libs/checkpoint-sqlite";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [
|
|
sarahec
|
|
];
|
|
};
|
|
}
|