1
0
Fork 0

python3: Update to python38.

This commit is contained in:
Kevin Baensch 2020-03-27 13:32:33 +01:00
parent ad76922338
commit ff5de0a30e
Signed by: derped
GPG Key ID: C0F1D326C7626543
2 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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 ];
}