From 00f08bb719c48dc5ab30412a95e432fcb8e06fe4 Mon Sep 17 00:00:00 2001 From: Stefan Frijters Date: Tue, 27 Jan 2026 12:06:36 +0100 Subject: [PATCH] pure-maps: expand pythonPath bash array for structuredAttrs --- pkgs/applications/misc/pure-maps/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/applications/misc/pure-maps/default.nix b/pkgs/applications/misc/pure-maps/default.nix index 4da7653baac7..ecc5c97a7254 100644 --- a/pkgs/applications/misc/pure-maps/default.nix +++ b/pkgs/applications/misc/pure-maps/default.nix @@ -50,7 +50,7 @@ mkDerivation rec { pythonPath = with python3.pkgs; [ gpxpy ]; preInstall = '' - buildPythonPath "$pythonPath" + buildPythonPath "''${pythonPath[*]}" qtWrapperArgs+=(--prefix PYTHONPATH : "$program_PYTHONPATH") '';