pythonPackages.gdbgui: 0.13.2.0 -> 0.13.2.1
- add eventlet to propagatedBuildInputs - add homepage - add gevent-websocket to propagatedBuildInputs Without gevent-websocket, this message is printed on start: "WARNING - WebSocket transport not available. Install gevent-websocket for improved performance." - Add gevent-websocket to propagatedBuildInputs to suppress the error message and supposedly improve performance
This commit is contained in:
parent
a993bd8eb7
commit
54e20c2361
1 changed files with 7 additions and 2 deletions
|
@ -8,11 +8,13 @@
|
|||
, pygdbmi
|
||||
, pygments
|
||||
, gevent
|
||||
, gevent-websocket
|
||||
, eventlet
|
||||
, }:
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "gdbgui";
|
||||
version = "0.13.2.0";
|
||||
version = "0.13.2.1";
|
||||
|
||||
buildInputs = [ gdb ];
|
||||
propagatedBuildInputs = [
|
||||
|
@ -22,11 +24,13 @@ buildPythonApplication rec {
|
|||
pygdbmi
|
||||
pygments
|
||||
gevent
|
||||
gevent-websocket
|
||||
eventlet
|
||||
];
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0m1fnwafzrpk77yj3p26vszlz11cv4g2lj38kymk1ilcifh4gqw0";
|
||||
sha256 = "0zn5wi47m8pn4amx574ryyhqvhynipxzyxbx0878ap6g36vh6l1h";
|
||||
};
|
||||
|
||||
postPatch = ''
|
||||
|
@ -45,6 +49,7 @@ buildPythonApplication rec {
|
|||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A browser-based frontend for GDB";
|
||||
homepage = "https://www.gdbgui.com/";
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ yrashk ];
|
||||
|
|
Loading…
Reference in a new issue