diff --git a/pkgs/by-name/ai/aider-chat/package.nix b/pkgs/by-name/ai/aider-chat/package.nix index 56709c7076d9..2ed266af2905 100644 --- a/pkgs/by-name/ai/aider-chat/package.nix +++ b/pkgs/by-name/ai/aider-chat/package.nix @@ -1,3 +1,9 @@ -{ python3Packages }: +{ + python3Packages, + withPlaywright ? false, +}: -python3Packages.toPythonApplication python3Packages.aider-chat +if withPlaywright then + python3Packages.toPythonApplication python3Packages.aider-chat.passthru.withPlaywright +else + python3Packages.toPythonApplication python3Packages.aider-chat diff --git a/pkgs/development/python-modules/aider-chat/default.nix b/pkgs/development/python-modules/aider-chat/default.nix index 574fc15f5134..76f8e414febb 100644 --- a/pkgs/development/python-modules/aider-chat/default.nix +++ b/pkgs/development/python-modules/aider-chat/default.nix @@ -13,7 +13,7 @@ let self = python3; packageOverrides = _: super: { tree-sitter = super.tree-sitter_0_21; }; }; - version = "0.75.1"; + version = "0.75.2"; aider-chat = python3.pkgs.buildPythonPackage { pname = "aider-chat"; inherit version; @@ -23,7 +23,7 @@ let owner = "Aider-AI"; repo = "aider"; tag = "v${version}"; - hash = "sha256-TQDYrkSW58E1/lIBuJsgpXst8OAbaTyNX1SM8mdFgzU"; + hash = "sha256-+XpvAnxsv6TbsJwTAgNdJtZxxoPXQ9cxRVUaFZCnS8w="; }; pythonRelaxDeps = true;