From 66fe0d03b051afe10818b77b45900125d52c4f58 Mon Sep 17 00:00:00 2001 From: Marko Kaapu Date: Mon, 4 Mar 2024 18:02:05 +0200 Subject: [PATCH 1/2] Add Python 3.10.13 and GNU Screen to x86 builders Signed-off-by: Marko Kaapu --- hosts/ficolobuild/builder.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/hosts/ficolobuild/builder.nix b/hosts/ficolobuild/builder.nix index 1ffd4bb9..0206a663 100644 --- a/hosts/ficolobuild/builder.nix +++ b/hosts/ficolobuild/builder.nix @@ -45,6 +45,8 @@ # Environment for Yubikey provisioning environment.systemPackages = with pkgs; [ usbutils + screen + python310 ]; virtualisation.docker.enable = true; } From 554c15d05ea359b9a5ba052fda9a3ab68c7418fa Mon Sep 17 00:00:00 2001 From: Marko Kaapu Date: Tue, 5 Mar 2024 14:58:33 +0200 Subject: [PATCH 2/2] x86 builder: Add Python packages - requests Signed-off-by: Marko Kaapu --- hosts/ficolobuild/builder.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/hosts/ficolobuild/builder.nix b/hosts/ficolobuild/builder.nix index 0206a663..de5b8b09 100644 --- a/hosts/ficolobuild/builder.nix +++ b/hosts/ficolobuild/builder.nix @@ -46,7 +46,10 @@ environment.systemPackages = with pkgs; [ usbutils screen - python310 + (python310.withPackages (ps: + with ps; [ + requests + ])) ]; virtualisation.docker.enable = true; }