From ff5de0a30e230f54b4dc718842706a3a7440add5 Mon Sep 17 00:00:00 2001 From: derped Date: Fri, 27 Mar 2020 13:32:33 +0100 Subject: [PATCH] python3: Update to python38. --- pkgsets/python3.nix | 4 ++-- services/desktop.nix | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pkgsets/python3.nix b/pkgsets/python3.nix index 908ab12..4936f75 100644 --- a/pkgsets/python3.nix +++ b/pkgsets/python3.nix @@ -3,8 +3,8 @@ let gitpkgs = import /nixpkgs {}; in { - config.machine.pkgsets.python3.pkgwrap = (pkgs.python3Full.withPackages (ps: with ps; config.machine.pkgsets.python3.pkgs)); - config.machine.pkgsets.python3.pkgs = with pkgs.python3Packages; [ + config.machine.pkgsets.python3.pkgwrap = (pkgs.python38Full.withPackages (ps: with ps; config.machine.pkgsets.python3.pkgs)); + config.machine.pkgsets.python3.pkgs = with pkgs.python38Packages; [ GitPython bpython # cairosvg cairocffi diff --git a/services/desktop.nix b/services/desktop.nix index 6413af7..b461b5b 100644 --- a/services/desktop.nix +++ b/services/desktop.nix @@ -52,5 +52,5 @@ in mkIf (elem "desktop" cfg.services) { horizontalScrolling = true; }; }; - machine.pkgsets.python3.pkgs = with pkgs.python3Packages; [ py3status pytz tzlocal ]; + machine.pkgsets.python3.pkgs = with pkgs.python38Packages; [ py3status pytz tzlocal ]; }