From b4a654aaf72223b4726e8ef75ab0de8afc231a72 Mon Sep 17 00:00:00 2001 From: Sirio Balmelli Date: Thu, 6 Mar 2025 12:00:35 +0100 Subject: [PATCH 1/2] python3Packages.aider-chat: 0.75.1 -> 0.75.2 Signed-off-by: Sirio Balmelli --- pkgs/development/python-modules/aider-chat/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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; From 954cd0049f7eedab46058ae21553f55e97f6e7d0 Mon Sep 17 00:00:00 2001 From: Sirio Balmelli Date: Thu, 6 Mar 2025 12:00:35 +0100 Subject: [PATCH 2/2] aider-chat: add withPlaywright override Signed-off-by: Sirio Balmelli --- pkgs/by-name/ai/aider-chat/package.nix | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) 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