From 7d000662732c55d333017dcf8eedb1c1939a66c7 Mon Sep 17 00:00:00 2001 From: Timo Gottszky Date: Wed, 3 Jun 2026 18:06:26 +0200 Subject: [PATCH] python3Packages.pyautogui: add changelog --- pkgs/development/python-modules/pyautogui/default.nix | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pyautogui/default.nix b/pkgs/development/python-modules/pyautogui/default.nix index 83d67257337d..57125a380d67 100644 --- a/pkgs/development/python-modules/pyautogui/default.nix +++ b/pkgs/development/python-modules/pyautogui/default.nix @@ -14,7 +14,7 @@ xvfb-run, scrot, }: -buildPythonPackage { +buildPythonPackage (finalAttrs: { pname = "pyautogui"; version = "0.9.53"; pyproject = true; @@ -60,7 +60,8 @@ buildPythonPackage { meta = { description = "PyAutoGUI lets Python control the mouse and keyboard, and other GUI automation tasks"; homepage = "https://github.com/asweigart/pyautogui"; + changelog = "https://github.com/asweigart/pyautogui/blob/${finalAttrs.src.rev}/CHANGES.txt"; license = lib.licenses.bsd3; maintainers = with lib.maintainers; [ lucasew ]; }; -} +})