Add directory name to venv prompt

This commit is contained in:
Evie Litherland-Smith 2023-05-22 09:54:50 +01:00
parent 16a81879ce
commit 4afbecf78c

View file

@ -2,7 +2,8 @@
pkgs.mkShell {
nativeBuildInputs = with pkgs; [python39 poetry git];
shellHook = ''
[ -e .venv/bin/python3 ] && VENV_FLAG="--upgrade" || VENV_FLAG="--clear"; python3 -m venv $VENV_FLAG .venv
export PROJECT_NAME=$(basename $(readlink -f .))
[ -e .venv/bin/python3 ] && VENV_FLAG="--upgrade" || VENV_FLAG="--clear --prompt $PROJECT_NAME"; python3 -m venv $VENV_FLAG .venv
[ -e .venv/bin/activate ] && source .venv/bin/activate
'';
}