From 24ef375fc764ee8ed5c97ceccb022dcbb19b9b34 Mon Sep 17 00:00:00 2001 From: Haylin Moore Date: Thu, 14 Aug 2025 15:51:02 -0700 Subject: [PATCH] default.nix: add python3 to the shell There are many systems that chose to not have a global python install, namely my own systems :p. I end up having to nix-shell -p python3 anytime I want to run the build.sh as the last step uf2conv depends on python --- default.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/default.nix b/default.nix index 828c0ee8f..4f9e1c59b 100644 --- a/default.nix +++ b/default.nix @@ -4,6 +4,7 @@ in pkgs.mkShell { buildInputs = [ pkgs.platformio + pkgs.python3 # optional: needed as a programmer i.e. for esp32 pkgs.avrdude ];