Update pythonshell template, add uv package

This commit is contained in:
Evie Litherland-Smith 2024-07-10 18:14:14 +01:00
parent 9174821a35
commit 884721a58a

View file

@ -172,13 +172,12 @@ nix-mode
)
(pythonshell "let" n
> "pkgs = import " (p "<nixpkgs>") " {};" n
> "poetry = pkgs.poetry;" n
> "python = pkgs." (p "python3") ";" n
> "in pkgs.mkShell {" n
> "packages = [ poetry " q "];" n
> "packages = with pkgs; [ poetry uv " q "];" n
> "shellHook = ''" n
> "export LD_LIBRARY_PATH=${pkgs.stdenv.cc.cc.lib}/lib" n
> "${poetry}/bin/poetry env use ${python}/bin/python3" n
> "${pkgs.poetry}/bin/poetry env use ${python}/bin/python3" n
> "'';" n
> "}")