python3Packages.pygame-gui: 0.5.7 -> 0.6.4

authored by

Angus Trau and committed by
Jonathan Ringer
6ea5ed2a e859a7ce

+9 -3
+9 -3
pkgs/development/python-modules/pygame-gui/default.nix
··· 3 3 , buildPythonPackage 4 4 , fetchFromGitHub 5 5 , pygame 6 + , python-i18n 6 7 , pytestCheckHook 7 8 }: 8 9 9 10 buildPythonPackage rec { 10 11 pname = "pygame-gui"; 11 - version = "0.5.7"; 12 + version = "0.6.4"; 13 + # nixpkgs-update: no auto update 12 14 13 15 src = fetchFromGitHub { 14 16 owner = "MyreMylar"; 15 17 repo = "pygame_gui"; 16 18 rev = "v_${lib.replaceStrings ["."] [""] version}"; 17 - sha256 = "4P2PT8/7oA5Q7H4+pm7BOET7w05pQYQltXVV3+YVrVE="; 19 + sha256 = "13+fK1hYxiMh0T+xbbmHViZjyBoQfRyIDc05fIJ/46U="; 18 20 }; 19 21 20 - propagatedBuildInputs = [ pygame ]; 22 + propagatedBuildInputs = [ pygame python-i18n ]; 21 23 22 24 postPatch = '' 23 25 substituteInPlace pygame_gui/core/utility.py \ ··· 42 44 "test_process_event_text_ctrl_v_select_range" 43 45 "test_process_event_text_ctrl_a" 44 46 "test_process_event_text_ctrl_x" 47 + ]; 48 + 49 + disabledTestPaths = [ 50 + "tests/test_performance/test_text_performance.py" 45 51 ]; 46 52 47 53 meta = with lib; {