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]
++ (with pkgs.python311Packages; [
pip
python-lsp-server
venvShellHook
requests
jupyter

View file

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