From f775febe7a3ccf0569dc0b27598723e76d59db97 Mon Sep 17 00:00:00 2001 From: Christopher James Hayward Date: Fri, 18 Jun 2021 15:24:02 -0400 Subject: [PATCH] Fix python shell --- shells/python.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/shells/python.nix b/shells/python.nix index 3da8bb7..61aaab3 100644 --- a/shells/python.nix +++ b/shells/python.nix @@ -4,11 +4,11 @@ with pkgs; mkShell { buildInputs = [ - python39Packages.pip - python39Packages.pip-tools - python39Packages.pyls-mypy - python39Packages.pyls-isort - python39Packages.pyls-black + python38Packages.pip + python38Packages.pip-tools + python38Packages.pyls-mypy + python38Packages.pyls-isort + python38Packages.pyls-black ]; shellHook = '' '';