From 2f5baded885ae44953e774088c618dd477cec47d Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Fri, 29 Dec 2023 07:09:58 +0000 Subject: [PATCH] mutmut: fix `tests` eval Without the change `tests fails the eval as: $ nix build --no-link -f. mutmut.tests error: undefined variable 'testers' --- pkgs/development/tools/mutmut/default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/development/tools/mutmut/default.nix b/pkgs/development/tools/mutmut/default.nix index 4b40930c646d..85d981961d16 100644 --- a/pkgs/development/tools/mutmut/default.nix +++ b/pkgs/development/tools/mutmut/default.nix @@ -1,6 +1,7 @@ { lib , fetchFromGitHub , python3 +, testers }: let self = with python3.pkgs; buildPythonApplication rec {