Remove install step from pyshell template

This commit is contained in:
Evie Litherland-Smith 2025-02-12 10:30:49 +00:00
parent 865debbb66
commit 55284f8cf4

View file

@ -8,7 +8,7 @@ nix-mode
> "env.LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [stdenv.cc.cc.lib libz];" n > "env.LD_LIBRARY_PATH = with pkgs; lib.makeLibraryPath [stdenv.cc.cc.lib libz];" n
> "shellHook = ''" n > "shellHook = ''" n
> "[ ! -d .venv/ ] && python3 -m venv --copies --without-pip --prompt $(basename $(readlink -f .)) .venv" 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 > "'';" n
"}") "}")