Commit 40b72309 authored by Sarah Clark's avatar Sarah Clark
Browse files

python3Packages.langgraph-sdk: 0.1.46 -> 0.1.51

parent 417aac8e
Loading
Loading
Loading
Loading
+5 −5
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@
  httpx,
  httpx-sse,
  orjson,
  typing-extensions,

  # passthru
  writeScript,
@@ -17,14 +18,14 @@

buildPythonPackage rec {
  pname = "langgraph-sdk";
  version = "0.1.43";
  version = "0.1.51";
  pyproject = true;

  src = fetchFromGitHub {
    owner = "langchain-ai";
    repo = "langgraph";
    tag = "sdk==${version}";
    hash = "sha256-mG04V36Aa5Df5pUgr+xWej8i2XYx+O/N61sSzxwN9Go=";
    hash = "sha256-BkwH9O59gG/OtnFWYEFe2WD0sIidptlkPACX9i7kCb8=";
  };

  sourceRoot = "${src.name}/libs/sdk-py";
@@ -35,6 +36,7 @@ buildPythonPackage rec {
    httpx
    httpx-sse
    orjson
    typing-extensions
  ];

  disabledTests = [ "test_aevaluate_results" ]; # Compares execution time to magic number
@@ -54,9 +56,7 @@ buildPythonPackage rec {
      nix-update --commit --version-regex 'checkpointpostgres==(.*)' python3Packages.langgraph-checkpoint-postgres
      nix-update --commit --version-regex 'checkpointsqlite==(.*)' python3Packages.langgraph-checkpoint-sqlite
    '';

    # multiple tags confuse the bulk updater
    skipBulkUpdate = true;
    skipBulkUpdate = true; # Broken, see https://github.com/NixOS/nixpkgs/issues/379898
  };

  meta = {