From 14979ee14494eba438c27cdc0ff8f10024a12249 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 25 Aug 2026 16:59:01 +0200 Subject: [PATCH] python3Packages.copier: fix makeWrapperArgs --- pkgs/development/python-modules/copier/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/copier/default.nix b/pkgs/development/python-modules/copier/default.nix index dfa79a8b236e..7cba64ce7c2c 100644 --- a/pkgs/development/python-modules/copier/default.nix +++ b/pkgs/development/python-modules/copier/default.nix @@ -70,7 +70,12 @@ buildPythonPackage (finalAttrs: { questionary ]; - makeWrapperArgs = [ "--suffix PATH : ${lib.makeBinPath [ git ]}" ]; + makeWrapperArgs = [ + "--suffix" + "PATH" + ":" + (lib.makeBinPath [ git ]) + ]; passthru.updateScript = nix-update-script { };