From 5f15dc29baaf592c57f7a37b4f89ce595133309b Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Mon, 4 Nov 2024 15:01:06 +0000 Subject: [PATCH] Update pyshell template with a few more choices --- templates | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/templates b/templates index 665d98d..6379822 100644 --- a/templates +++ b/templates @@ -198,13 +198,13 @@ nix-mode > "packages = [" n > "(python3.withPackages(" n > "ps: with ps; ["n - > (p "tkinter") n - > q n + > (p "tkinter mypy") n + > (p "(callPackage ./derivation.nix { })") n > "]" n > "))" n > "];" n > "shellHook = ''" n - > "export PYTHONPATH=$(readlink -f ./):$PYTHONPATH" n + > "export PYTHONPATH=$(readlink -f " (p "./") "):$PYTHONPATH" n > "'';"n > "}")