use python3 instead of python2

This commit is contained in:
Dmitriy Kholkin 2022-10-11 19:45:09 +03:00
parent 27351e8d64
commit 5a47efdff0
Signed by: AtaraxiaDev
GPG Key ID: FD266B810DF48DF2
2 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ let
# a transformation of this data such as rgb. The hacky python script pre-
# processes the theme file in this way for consumption by the mustache
# engine below.
python = pkgs.python.withPackages (ps: [ ps.pyyaml ]);
python = pkgs.python3.withPackages (ps: [ ps.pyyaml ]);
preprocess = src:
pkgs.stdenv.mkDerivation {
name = "yaml";

View File

@ -2,9 +2,9 @@
import yaml
import json
import sys
input = yaml.load(sys.stdin)
input = yaml.safe_load(sys.stdin)
input["colors"] = {}
for (k,v) in input.copy().items():
for (k,v) in list(input.copy().items()):
if k[0:4] == "base":
col = k[4:]
input["colors"][k[4:]] = {