From b2e0bda97e9b730a11c41d4ec83de5fca3c642be Mon Sep 17 00:00:00 2001 From: Denis Lehmann Date: Sat, 6 Mar 2021 00:39:18 +0100 Subject: [PATCH] change Python version to 3 --- python_environment/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python_environment/default.nix b/python_environment/default.nix index b38f66f..a475d01 100644 --- a/python_environment/default.nix +++ b/python_environment/default.nix @@ -3,8 +3,8 @@ with import {}; stdenv.mkDerivation { name = "myPythonEnv"; buildInputs = with pkgs; [ - python38Full - python38Packages.virtualenv + python3Full + python3Packages.virtualenv ]; src = null; shellHook = ''