From 28b2ad68933f2b579972fb450cd9336868de1f1c Mon Sep 17 00:00:00 2001 From: Zexin Yuan Date: Sun, 6 Apr 2025 12:56:30 +0800 Subject: [PATCH] aider-chat: fix flake8 path --- pkgs/development/python-modules/aider-chat/default.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/python-modules/aider-chat/default.nix b/pkgs/development/python-modules/aider-chat/default.nix index eb275da05fd8..9fbf3f149465 100644 --- a/pkgs/development/python-modules/aider-chat/default.nix +++ b/pkgs/development/python-modules/aider-chat/default.nix @@ -247,6 +247,10 @@ let gitMinimal ]; + postPatch = '' + substituteInPlace aider/linter.py --replace-fail "\"flake8\"" "\"${flake8}\"" + ''; + disabledTestPaths = [ # Tests require network access "tests/scrape/test_scrape.py"