Commit 1125cd80 authored by Sarah Clark's avatar Sarah Clark Committed by sarahec
Browse files

python312Packages.langchain-standard-tests: track langchain-core

parent 65089d8a
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -21,12 +21,11 @@

buildPythonPackage rec {
  pname = "langchain-standard-tests";
  version = "0.1.1";
  pyproject = true;

  # this is an internal library, so there are no tags
  # sync source with langchain-core for easy updates
  inherit (langchain-core) src;
  inherit (langchain-core) src version;
  sourceRoot = "${src.name}/libs/standard-tests";

  build-system = [ poetry-core ];
@@ -51,6 +50,9 @@ buildPythonPackage rec {
    description = "Build context-aware reasoning applications";
    homepage = "https://github.com/langchain-ai/langchain";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ natsukium ];
    maintainers = with lib.maintainers; [
      natsukium
      sarahec
    ];
  };
}