From e93d574e139995efeb921008355e7fece380ac82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Attila=20Ol=C3=A1h?= Date: Sun, 19 Jul 2026 10:29:46 +0200 Subject: [PATCH] nix: add the python env to check inputs The tests now require Python so the env should be added to the check inputs, otherwise the build fails. --- flake.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/flake.nix b/flake.nix index 96d0625..af249bd 100644 --- a/flake.nix +++ b/flake.nix @@ -42,6 +42,8 @@ gmp ]; + checkInputs = [pythonEnv]; + # Use x86-64-v3 (AVX2) for a portable binary; override with ARCH=native for local builds ARCH = "x86-64-v3";