From 55284f8cf4f94df964bcc429baf4189a8337ad1d Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Wed, 12 Feb 2025 10:30:49 +0000 Subject: [PATCH] Remove install step from pyshell template --- templates | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates b/templates index 0730704..c2ed88f 100644 --- a/templates +++ b/templates @@ -8,7 +8,7 @@ nix-mode > "env.LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [stdenv.cc.cc.lib libz];" n > "shellHook = ''" n > "[ ! -d .venv/ ] && python3 -m venv --copies --without-pip --prompt $(basename $(readlink -f .)) .venv" n - > "[ -f .venv/bin/activate ] && source .venv/bin/activate && uv pip install pyflakes isort -e ." n + > "[ -f .venv/bin/activate ] && source .venv/bin/activate" n > "'';" n "}")