Commit 5699ec02 authored by Sarah Clark's avatar Sarah Clark
Browse files

python3Packages.langgraph-checkpoint-sqlite: 2.0.1 -> 2.0.3

parent 8a1334a6
Loading
Loading
Loading
Loading
+4 −9
Original line number Diff line number Diff line
@@ -8,21 +8,18 @@
  pytestCheckHook,
  langgraph-sdk,
  poetry-core,
  pythonOlder,
}:

buildPythonPackage rec {
  pname = "langgraph-checkpoint-sqlite";
  version = "2.0.1";
  version = "2.0.3";
  pyproject = true;

  disabled = pythonOlder "3.9";

  src = fetchFromGitHub {
    owner = "langchain-ai";
    repo = "langgraph";
    tag = "checkpointsqlite==${version}";
    hash = "sha256-dh+cjcOp6rGFntz82VNfVyetcrQBdBFdXk5xFb0aR5c=";
    hash = "sha256-u3tKh63bOu+Ko2YynEfxQ/nGElEfwwTQ6Z1RhqF51Qs=";
  };

  sourceRoot = "${src.name}/libs/checkpoint-sqlite";
@@ -45,10 +42,8 @@ buildPythonPackage rec {
  ];

  passthru = {
    updateScript = langgraph-sdk.updateScript;

    # multiple tags confuse the bulk updater
    skipBulkUpdate = true;
    inherit (langgraph-sdk) updateScript;
    skipBulkUpdate = true; # Broken, see https://github.com/NixOS/nixpkgs/issues/379898
  };

  meta = {