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