python3Packages.copier: fix makeWrapperArgs

This commit is contained in:
Fabian Affolter
2026-08-25 16:59:01 +02:00
parent 944f2aedef
commit 14979ee144

View File

@@ -70,7 +70,12 @@ buildPythonPackage (finalAttrs: {
questionary
];
makeWrapperArgs = [ "--suffix PATH : ${lib.makeBinPath [ git ]}" ];
makeWrapperArgs = [
"--suffix"
"PATH"
":"
(lib.makeBinPath [ git ])
];
passthru.updateScript = nix-update-script { };