From 9c3a202dc234a40332a146ea1e98326f8c8eb4ab Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Mon, 10 Jun 2024 00:17:08 +0200 Subject: [PATCH] python311Packages.pygame-gui: 0610 -> 0611 --- pkgs/development/python-modules/pygame-gui/default.nix | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/pygame-gui/default.nix b/pkgs/development/python-modules/pygame-gui/default.nix index c4e44398a09b..e370c36bb4d7 100644 --- a/pkgs/development/python-modules/pygame-gui/default.nix +++ b/pkgs/development/python-modules/pygame-gui/default.nix @@ -2,6 +2,7 @@ lib, pkgs, buildPythonPackage, + nix-update-script, fetchFromGitHub, setuptools, pygame-ce, @@ -11,7 +12,7 @@ buildPythonPackage rec { pname = "pygame-gui"; - version = "0610"; + version = "0611"; pyproject = true; # nixpkgs-update: no auto update @@ -19,7 +20,7 @@ buildPythonPackage rec { owner = "MyreMylar"; repo = "pygame_gui"; rev = "refs/tags/v_${version}"; - hash = "sha256-PVNi/I174AyEEjc+N2UGtgOYSGAgVQbqrKkWZnjOxFY="; + hash = "sha256-bibw6RUQKsOsaISunVEdQCT39KnXJ2VKVrAqsPS+Lu8="; }; nativeBuildInputs = [ setuptools ]; @@ -56,6 +57,10 @@ buildPythonPackage rec { disabledTestPaths = [ "tests/test_performance/test_text_performance.py" ]; + passthru.updateScript = nix-update-script { + extraArgs = [ "--version-regex" "v_(.*)" ]; + }; + meta = with lib; { description = "GUI system for pygame"; homepage = "https://github.com/MyreMylar/pygame_gui";