From deacfe4954b76729298e25dab018450e9bf2308e Mon Sep 17 00:00:00 2001 From: Jairo Llopis Date: Fri, 13 Jun 2025 11:40:17 +0200 Subject: [PATCH] python3Packages.copier: add a working update script See https://github.com/nix-community/nixpkgs-update/issues/477#issuecomment-2967686833 for details. --- pkgs/development/python-modules/copier/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/copier/default.nix b/pkgs/development/python-modules/copier/default.nix index 5a6bc6244477..0ec4b1471609 100644 --- a/pkgs/development/python-modules/copier/default.nix +++ b/pkgs/development/python-modules/copier/default.nix @@ -12,6 +12,7 @@ lib, mkdocs-material, mkdocs-mermaid2-plugin, + nix-update-script, mkdocstrings, packaging, pathspec, @@ -71,6 +72,8 @@ buildPythonPackage rec { makeWrapperArgs = [ "--suffix PATH : ${lib.makeBinPath [ git ]}" ]; + passthru.updateScript = nix-update-script { }; + meta = { description = "Library and command-line utility for rendering projects templates"; homepage = "https://copier.readthedocs.io";