From 784c57bd13c8ccfd7013208a84f597608ad86975 Mon Sep 17 00:00:00 2001 From: TapTap Date: Sun, 19 Jul 2026 15:03:23 +0200 Subject: [PATCH] shell: add pytest to nix-shell environment --- shell.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/shell.nix b/shell.nix index b7f96c4..16a2420 100644 --- a/shell.nix +++ b/shell.nix @@ -15,6 +15,7 @@ pkgs.mkShell { buildInputs = with pkgs; [ zstd openssl + (python3.withPackages (ps: with ps; [ pytest ])) ]; NIX_ENFORCE_PURITY = 0;