pure-maps: expand pythonPath bash array for structuredAttrs

This commit is contained in:
Stefan Frijters
2026-01-27 12:25:02 +01:00
parent b74eb82644
commit 00f08bb719
+1 -1
View File
@@ -50,7 +50,7 @@ mkDerivation rec {
pythonPath = with python3.pkgs; [ gpxpy ];
preInstall = ''
buildPythonPath "$pythonPath"
buildPythonPath "''${pythonPath[*]}"
qtWrapperArgs+=(--prefix PYTHONPATH : "$program_PYTHONPATH")
'';