From 2ed60c215ff1159e1a02b07b177684160dccff44 Mon Sep 17 00:00:00 2001 From: fleaz Date: Tue, 30 Apr 2024 17:47:35 +0200 Subject: [PATCH] Test python plugin --- test.nix | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/test.nix b/test.nix index 235f9fc..965b63c 100644 --- a/test.nix +++ b/test.nix @@ -1,7 +1,11 @@ { pkgs ? import { overlays = [ (import ./default.nix) ]; } }: - +let + mypython = pkgs.python3.withPackages (python-pkgs: [ + python-pkgs.salt-lint + ]); +in pkgs.mkShell { buildInputs = with pkgs; [ - gohome + mypython ]; }