diff --git a/templates/venv.nix b/templates/venv.nix index 9eddd847..8400cb2a 100644 --- a/templates/venv.nix +++ b/templates/venv.nix @@ -1,14 +1,6 @@ { pkgs ? import { }, python ? pkgs.python39, ... }: pkgs.mkShell { - nativeBuildInputs = with pkgs; [ - (python.withPackages (ps: with ps; [ pip wheel ])) - poetry - black - isort - ruff - git - ]; - + nativeBuildInputs = with pkgs; [ (python.withPackages (ps: with ps; [ pip wheel ])) poetry git ]; shellHook = '' [ -d .venv ] || python -m venv .venv source .venv/bin/activate