mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 19:55:41 +03:00
python312Packages.langgraph-checkpoint-duckdb: removed (#396094)
This commit is contained in:
commit
3abb5a75c5
4 changed files with 1 additions and 70 deletions
|
@ -1,64 +0,0 @@
|
|||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
langgraph-checkpoint,
|
||||
aiosqlite,
|
||||
duckdb,
|
||||
pytest-asyncio,
|
||||
pytestCheckHook,
|
||||
langgraph-sdk,
|
||||
poetry-core,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "langgraph-checkpoint-duckdb";
|
||||
version = "2.0.2";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "langchain-ai";
|
||||
repo = "langgraph";
|
||||
tag = "checkpointduckdb==${version}";
|
||||
hash = "sha256-ppgViNRkkCTOGPfdB04DOnEzFgHN1KGDLLVjuwhRgNE=";
|
||||
};
|
||||
|
||||
sourceRoot = "${src.name}/libs/checkpoint-duckdb";
|
||||
|
||||
build-system = [ poetry-core ];
|
||||
|
||||
dependencies = [
|
||||
aiosqlite
|
||||
duckdb
|
||||
langgraph-checkpoint
|
||||
];
|
||||
|
||||
# Checkpoint clients are lagging behind langgraph-checkpoint
|
||||
pythonRelaxDeps = [ "langgraph-checkpoint" ];
|
||||
|
||||
pythonImportsCheck = [ "langgraph.checkpoint.duckdb" ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
pytest-asyncio
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
disabledTests = [ "test_basic_store_ops" ]; # depends on networking
|
||||
|
||||
passthru = {
|
||||
inherit (langgraph-sdk) updateScript;
|
||||
|
||||
skipBulkUpdate = true; # Broken, see https://github.com/NixOS/nixpkgs/issues/379898
|
||||
};
|
||||
|
||||
meta = {
|
||||
changelog = "https://github.com/langchain-ai/langgraph/releases/tag/checkpointduckdb==${version}";
|
||||
description = "Library with a DuckDB implementation of LangGraph checkpoint saver";
|
||||
homepage = "https://github.com/langchain-ai/langgraph/tree/main/libs/checkpoint-duckdb";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [
|
||||
drupol
|
||||
sarahec
|
||||
];
|
||||
};
|
||||
}
|
|
@ -17,7 +17,6 @@
|
|||
dataclasses-json,
|
||||
grandalf,
|
||||
httpx,
|
||||
langgraph-checkpoint-duckdb,
|
||||
langgraph-checkpoint-postgres,
|
||||
langgraph-checkpoint-sqlite,
|
||||
langsmith,
|
||||
|
@ -142,7 +141,6 @@ buildPythonPackage rec {
|
|||
dataclasses-json
|
||||
grandalf
|
||||
httpx
|
||||
langgraph-checkpoint-duckdb
|
||||
langgraph-checkpoint-postgres
|
||||
langgraph-checkpoint-sqlite
|
||||
langsmith
|
||||
|
|
|
@ -373,6 +373,7 @@ mapAliases ({
|
|||
lammps-cython = throw "lammps-cython no longer builds and is unmaintained"; # added 2021-07-04
|
||||
langchain-standard-tests = langchain-tests; # added 2025-01-22
|
||||
langchainplus-sdk = langsmith; # added 2023-08-01
|
||||
langgraph-checkpoint-duckdb = throw "langgraph-checkpoint-duckdb has been removed as of langgraph 0.2.63"; # added 2025-04-04
|
||||
lazr_config = lazr-config; # added 2023-11-03
|
||||
lazr_delegates = lazr-delegates; # added 2023-11-03
|
||||
lazy_import = lazy-import; # added 2024-01-07
|
||||
|
|
|
@ -7456,10 +7456,6 @@ self: super: with self; {
|
|||
|
||||
langgraph-checkpoint = callPackage ../development/python-modules/langgraph-checkpoint { };
|
||||
|
||||
langgraph-checkpoint-duckdb =
|
||||
callPackage ../development/python-modules/langgraph-checkpoint-duckdb
|
||||
{ };
|
||||
|
||||
langgraph-checkpoint-postgres =
|
||||
callPackage ../development/python-modules/langgraph-checkpoint-postgres
|
||||
{ };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue