Files
Fabian Affolter 9af19f0383 python3Packages.langgraph-runtime-inmem: 0.32.3 -> 0.33.0
This commit was automatically generated using update-python-libraries.
2026-08-25 01:24:32 +02:00

53 lines
1.0 KiB
Nix

{
lib,
buildPythonPackage,
fetchPypi,
hatchling,
blockbuster,
croniter,
langgraph,
langgraph-checkpoint,
sse-starlette,
starlette,
structlog,
}:
buildPythonPackage (finalAttrs: {
pname = "langgraph-runtime-inmem";
version = "0.33.0";
pyproject = true;
__structuredAttrs = true;
# Not available in any repository
src = fetchPypi {
pname = "langgraph_runtime_inmem";
inherit (finalAttrs) version;
hash = "sha256-rnYtp+JRrltmU/e6QqaIJk1/cu1z4r/ZKBU8nTOLrFo=";
};
build-system = [ hatchling ];
dependencies = [
blockbuster
croniter
langgraph
langgraph-checkpoint
sse-starlette
starlette
structlog
];
pythonImportsCheck = [ "langgraph_runtime_inmem" ];
# no tests
doCheck = false;
meta = {
description = "Inmem implementation for the LangGraph API server";
homepage = "https://pypi.org/project/langgraph-runtime-inmem/";
# no changelog
license = lib.licenses.elastic20;
maintainers = with lib.maintainers; [ sarahec ];
};
})