mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
python3.pkgs.ete3: remove pyqt4
This commit is contained in:
parent
ea9b800dde
commit
8019246661
@ -7,7 +7,6 @@
|
||||
, withTreeVisualization ? false
|
||||
, lxml
|
||||
, withXmlSupport ? false
|
||||
, pyqt4
|
||||
, pyqt5
|
||||
}:
|
||||
|
||||
@ -25,7 +24,7 @@ buildPythonPackage rec {
|
||||
pythonImportsCheck = [ "ete3" ];
|
||||
|
||||
propagatedBuildInputs = [ six numpy ]
|
||||
++ lib.optional withTreeVisualization (if isPy3k then pyqt5 else pyqt4)
|
||||
++ lib.optional withTreeVisualization pyqt5
|
||||
++ lib.optional withXmlSupport lxml;
|
||||
|
||||
meta = with lib; {
|
||||
|
Loading…
Reference in New Issue
Block a user