python3Packages.qtconsole: fix compile

It now depends on `qtpy`.
This commit is contained in:
Yury G. Kudryashov 2020-05-08 05:11:39 -04:00 committed by Jon
parent c831d1afc5
commit 92b43be92a

View file

@ -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;