That wasn't it, let's try removing the venv from python
This commit is contained in:
parent
56ace5fe40
commit
2ee4ca78ce
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
]);
|
]);
|
||||||
};
|
};
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue