From 77884b9c1b8850ac081a9ca9759c5c84064c3a35 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Sat, 17 Jan 2026 08:59:01 +0000 Subject: [PATCH] python3Packages.raylib-python-cffi.tests: fix the eval MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Without the chnage the eval fails: $ nix-instantiate -A python3Packages.raylib-python-cffi.tests error: … from call site at pkgs/development/python-modules/raylib-python-cffi/default.nix:52:20: 51| 52| passthru.tests = import ./passthru-tests.nix { | ^ 53| inherit writers; error: function 'anonymous lambda' called without required argument 'src' at pkgs/development/python-modules/raylib-python-cffi/passthru-tests.nix:1:1: 1| { | ^ 2| src, --- .../python-modules/raylib-python-cffi/passthru-tests.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/raylib-python-cffi/passthru-tests.nix b/pkgs/development/python-modules/raylib-python-cffi/passthru-tests.nix index 589f016412715..20934ec45ad45 100644 --- a/pkgs/development/python-modules/raylib-python-cffi/passthru-tests.nix +++ b/pkgs/development/python-modules/raylib-python-cffi/passthru-tests.nix @@ -1,9 +1,9 @@ { - src, raylib-python-cffi, writers, }: let + src = raylib-python-cffi.src; writeTest = name: path: writers.writePython3Bin name {