python3: Update to python38.
This commit is contained in:
parent
ad76922338
commit
ff5de0a30e
2 changed files with 3 additions and 3 deletions
|
@ -3,8 +3,8 @@
|
||||||
let
|
let
|
||||||
gitpkgs = import /nixpkgs {};
|
gitpkgs = import /nixpkgs {};
|
||||||
in {
|
in {
|
||||||
config.machine.pkgsets.python3.pkgwrap = (pkgs.python3Full.withPackages (ps: with ps; config.machine.pkgsets.python3.pkgs));
|
config.machine.pkgsets.python3.pkgwrap = (pkgs.python38Full.withPackages (ps: with ps; config.machine.pkgsets.python3.pkgs));
|
||||||
config.machine.pkgsets.python3.pkgs = with pkgs.python3Packages; [
|
config.machine.pkgsets.python3.pkgs = with pkgs.python38Packages; [
|
||||||
GitPython
|
GitPython
|
||||||
bpython
|
bpython
|
||||||
# cairosvg cairocffi
|
# cairosvg cairocffi
|
||||||
|
|
|
@ -52,5 +52,5 @@ in mkIf (elem "desktop" cfg.services) {
|
||||||
horizontalScrolling = true;
|
horizontalScrolling = true;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
machine.pkgsets.python3.pkgs = with pkgs.python3Packages; [ py3status pytz tzlocal ];
|
machine.pkgsets.python3.pkgs = with pkgs.python38Packages; [ py3status pytz tzlocal ];
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue