python3Packages.qtconsole: fix compile
It now depends on `qtpy`.
This commit is contained in:
parent
c831d1afc5
commit
92b43be92a
1 changed files with 2 additions and 1 deletions
|
@ -10,6 +10,7 @@
|
|||
, pygments
|
||||
, ipykernel
|
||||
, pyqt5
|
||||
, qtpy
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
|
@ -22,7 +23,7 @@ buildPythonPackage rec {
|
|||
};
|
||||
|
||||
checkInputs = [ nose ] ++ lib.optionals isPy27 [mock];
|
||||
propagatedBuildInputs = [traitlets jupyter_core jupyter_client pygments ipykernel pyqt5];
|
||||
propagatedBuildInputs = [traitlets jupyter_core jupyter_client pygments ipykernel pyqt5 qtpy];
|
||||
|
||||
# : cannot connect to X server
|
||||
doCheck = false;
|
||||
|
|
Loading…
Reference in a new issue