From 8eaa5a7839eda7edcc415b856f7bd52b61673c01 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Wed, 17 May 2023 15:04:58 +0100 Subject: [PATCH] Reduce packages needed in venv template --- templates/venv.nix | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) 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