gdbgui: 0.13.2.1 -> 0.14.0.2

This commit is contained in:
Mikhail Klementev 2021-01-25 15:36:15 +00:00
parent d745d128b6
commit 38b140b3e1
No known key found for this signature in database
GPG Key ID: BE44DA8C062D87DC
1 changed files with 43 additions and 4 deletions

View File

@ -3,6 +3,10 @@
, fetchPypi , fetchPypi
, gdb , gdb
, flask , flask
, six
, bidict
, python-engineio
, python-socketio
, flask-socketio , flask-socketio
, flask-compress , flask-compress
, pygdbmi , pygdbmi
@ -12,14 +16,48 @@
, eventlet , eventlet
, }: , }:
let
# gdbgui only works with the latest previous major version of flask-socketio,
# which depends itself on the latest previous major versions of dependencies.
python-engineio' = python-engineio.overridePythonAttrs (old: rec {
version = "3.14.2";
src = fetchPypi {
inherit (old) pname;
inherit version;
sha256 = "119halljynqsgswlhlh750qv56js1p7j52sc0nbwxh8450zmbd7a";
};
propagatedBuildInputs = [ six ];
doCheck = false;
});
python-socketio' = python-socketio.overridePythonAttrs (old: rec {
version = "4.6.1";
src = fetchPypi {
inherit (old) pname;
inherit version;
sha256 = "047syhrrxh327p0fnab0d1zy25zijnj3gs1qg3kjpsy1jaj5l7yd";
};
propagatedBuildInputs = [ bidict python-engineio' ];
doCheck = false;
});
flask-socketio' = flask-socketio.overridePythonAttrs (old: rec {
version = "4.3.2";
src = fetchPypi {
inherit (old) pname;
inherit version;
sha256 = "0s2xs9kv9cbwy8bcxszhdwlcb9ldv0fj33lwilf5vypj0wsin01p";
};
propagatedBuildInputs = [ flask python-socketio' ];
doCheck = false;
});
in
buildPythonApplication rec { buildPythonApplication rec {
pname = "gdbgui"; pname = "gdbgui";
version = "0.13.2.1"; version = "0.14.0.2";
buildInputs = [ gdb ]; buildInputs = [ gdb ];
propagatedBuildInputs = [ propagatedBuildInputs = [
flask flask
flask-socketio flask-socketio'
flask-compress flask-compress
pygdbmi pygdbmi
pygments pygments
@ -30,13 +68,14 @@ buildPythonApplication rec {
src = fetchPypi { src = fetchPypi {
inherit pname version; inherit pname version;
sha256 = "0zn5wi47m8pn4amx574ryyhqvhynipxzyxbx0878ap6g36vh6l1h"; sha256 = "1v6wwsncgnhlg5c7gsmzcp52hfblfnz5kf5pk4d0zybflsxak02d";
}; };
postPatch = '' postPatch = ''
echo ${version} > gdbgui/VERSION.txt echo ${version} > gdbgui/VERSION.txt
# remove upper version bound # remove upper version bound
sed -ie 's!, <.*"!"!' setup.py sed -ie 's!, <.*"!"!' setup.py
sed -i 's/greenlet==/greenlet>=/' setup.py
''; '';
postInstall = '' postInstall = ''
@ -52,6 +91,6 @@ buildPythonApplication rec {
homepage = "https://www.gdbgui.com/"; homepage = "https://www.gdbgui.com/";
license = licenses.gpl3; license = licenses.gpl3;
platforms = platforms.unix; platforms = platforms.unix;
maintainers = with maintainers; [ yrashk ]; maintainers = with maintainers; [ yrashk dump_stack ];
}; };
} }