From 5ea3790cbe8254f2a432d48a0ff1dcda1e466560 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Fri, 1 Nov 2024 21:16:58 +0100 Subject: [PATCH] python3Packages.vapoursynth: remove useless $src from unittestFlagsArray Avoids the use of bash eval in unittestFlagsArray, which we want to remove. --- pkgs/development/python-modules/vapoursynth/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/vapoursynth/default.nix b/pkgs/development/python-modules/vapoursynth/default.nix index 1fb1d4be03ef..8e50bba69a4d 100644 --- a/pkgs/development/python-modules/vapoursynth/default.nix +++ b/pkgs/development/python-modules/vapoursynth/default.nix @@ -20,7 +20,7 @@ buildPythonPackage { unittestFlagsArray = [ "-s" - "$src/test" + "test" "-p" "'*test.py'" ];