That wasn't it, let's try removing the venv from python

This commit is contained in:
Lillian Violet 2024-04-27 15:26:22 +02:00
parent 56ace5fe40
commit 2ee4ca78ce
2 changed files with 2 additions and 2 deletions

View file

@ -21,6 +21,7 @@
[python311 virtualenv] [python311 virtualenv]
++ (with pkgs.python311Packages; [ ++ (with pkgs.python311Packages; [
pip pip
python-lsp-server
venvShellHook venvShellHook
requests requests
jupyter jupyter

View file

@ -16,12 +16,11 @@
in { in {
devShells = forEachSupportedSystem ({pkgs}: { devShells = forEachSupportedSystem ({pkgs}: {
default = pkgs.mkShell { default = pkgs.mkShell {
venvDir = "venv";
packages = with pkgs; packages = with pkgs;
[python311] [python311]
++ (with pkgs.python311Packages; [ ++ (with pkgs.python311Packages; [
pip pip
venvShellHook python-lsp-server
]); ]);
}; };
}); });