lol

gdbgui: 0.15.0.1 -> 0.15.1.0

Fixes #214614 by switching from the Sept 2021 release to the Jun 2022
release (https://github.com/cs01/gdbgui/releases)

+8 -7
+8 -7
pkgs/development/tools/misc/gdbgui/default.nix
··· 2 2 , buildPythonApplication 3 3 , fetchPypi 4 4 , gdb 5 + , eventlet 6 + , flask-compress 5 7 , flask-socketio 6 - , flask-compress 7 8 , pygdbmi 8 9 , pygments 9 10 , }: ··· 11 12 buildPythonApplication rec { 12 13 pname = "gdbgui"; 13 14 14 - version = "0.15.0.1"; 15 - 15 + version = "0.15.1.0"; 16 16 17 17 buildInputs = [ gdb ]; 18 18 propagatedBuildInputs = [ 19 + eventlet 20 + flask-compress 19 21 flask-socketio 20 - flask-compress 21 22 pygdbmi 22 23 pygments 23 24 ]; 24 25 25 26 src = fetchPypi { 26 27 inherit pname version; 27 - sha256 = "sha256-bwrleLn3GBx4Mie2kujtaUo+XCALM+hRLySIZERlBg0="; 28 + sha256 = "sha256-YcD3om7N6yddm02It6/fjXDsVHG0Cs46fdGof0PMJXM="; 28 29 }; 29 30 30 31 postPatch = '' 31 32 echo ${version} > gdbgui/VERSION.txt 32 - # remove upper version bound 33 - sed -ie 's!,.*<.*!!' requirements.in 33 + # relax version requirements 34 + sed -i 's/==.*$//' requirements.txt 34 35 ''; 35 36 36 37 postInstall = ''