mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
python3Packages.qtconsole: fix compile
It now depends on `qtpy`.
This commit is contained in:
parent
c831d1afc5
commit
92b43be92a
@ -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 New Issue
Block a user