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