Test python plugin

This commit is contained in:
fleaz 2024-04-30 17:47:35 +02:00
parent 88554ee311
commit 2ed60c215f
No known key found for this signature in database
GPG key ID: AED15F8FDD04D083

View file

@ -1,7 +1,11 @@
{ pkgs ? import <nixpkgs> { overlays = [ (import ./default.nix) ]; } }:
let
mypython = pkgs.python3.withPackages (python-pkgs: [
python-pkgs.salt-lint
]);
in
pkgs.mkShell {
buildInputs = with pkgs; [
gohome
mypython
];
}