From 96962536a74c75fe0900cc49a0a6cab12b3e28eb Mon Sep 17 00:00:00 2001 From: Eric Leblond Date: Wed, 7 May 2025 09:40:42 +0200 Subject: [PATCH] misc: add python support to shell.nix This allows to run suricata-verify from the shell environment. Ticket: #7669 --- shell.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/shell.nix b/shell.nix index 67db96bd66..5954f231ce 100644 --- a/shell.nix +++ b/shell.nix @@ -40,6 +40,13 @@ in with pkgs; "zerocallusedregs" ]; + packages = [ + (pkgs.python3.withPackages (python-pkgs: [ + python-pkgs.pyyaml + python-pkgs.requests + ])) + ]; + #shellHook = '' # cargo install cbindgen #'';