Back to pyyaml

This commit is contained in:
Greg Hellings
2024-04-16 14:13:24 -05:00
parent 93c3f3fefa
commit 4e3cee26c6
+2 -2
View File
@@ -23,7 +23,7 @@
};
packages = {
vm-test = let
basicPython = (pkgs.python3.withPackages (p: with p; [ ruamel-yaml ]));
basicPython = (pkgs.python3.withPackages (p: with p; [ pyyaml ]));
in pkgs.dockerTools.buildLayeredImage {
name = "vm-test";
tag = "latest";
@@ -36,7 +36,7 @@
jq
packer
shellcheck
(xonsh.overridePythonAttrs (old: rec { python3 = basicPython; propagatedBuildInputs = old.propagatedBuildInputs ++ [ python3.pkgs.ruamel-yaml ];}))
(xonsh.overridePythonAttrs (old: rec { python3 = basicPython; propagatedBuildInputs = old.propagatedBuildInputs ++ [ basicPython.pkgs.pyyaml ];}))
];
};
};