Unverified Commit 2dcf8afc authored by Yt's avatar Yt Committed by GitHub
Browse files

aider-chat: add playwright version (#354796)

parents 52c3ce5d 4f101cae
Loading
Loading
Loading
Loading
+160 −150
Original line number Diff line number Diff line
@@ -13,8 +13,7 @@ let
    packageOverrides = _: super: { tree-sitter = super.tree-sitter_0_21; };
  };
  version = "0.62.0";
in
python3.pkgs.buildPythonApplication {
  aider-chat = python3.pkgs.buildPythonApplication {
    pname = "aider-chat";
    inherit version;
    pyproject = true;
@@ -167,6 +166,15 @@ python3.pkgs.buildPythonApplication {
      ];
    };

    passthru = {
      withPlaywright = aider-chat.overridePythonAttrs (
        { dependencies, ... }:
        {
          dependencies = dependencies ++ aider-chat.optional-dependencies.playwright;
        }
      );
    };

    meta = {
      description = "AI pair programming in your terminal";
      homepage = "https://github.com/paul-gauthier/aider";
@@ -175,4 +183,6 @@ python3.pkgs.buildPythonApplication {
      maintainers = with lib.maintainers; [ taha-yassine ];
      mainProgram = "aider";
    };
}
  };
in
aider-chat