pyqt4: update to 4.10.3 and add python3 support

also add python3 support for dbus-python
This commit is contained in:
Song Wenwu
2014-01-08 16:39:05 +08:00
committed by Rok Garbas
parent 98d2f7ea45
commit 501008ad6f
3 changed files with 22 additions and 13 deletions

View File

@@ -57,6 +57,11 @@ pythonPackages = modules // import ./python-packages-generated.nix {
blivet = callPackage ../development/python-modules/blivet { };
dbus = import ../development/python-modules/dbus {
inherit (pkgs) stdenv fetchurl pkgconfig dbus dbus_glib dbus_tools;
inherit python;
};
ipython = import ../shells/ipython {
inherit (pkgs) stdenv fetchurl sip pyqt4;
inherit buildPythonPackage pythonPackages;
@@ -121,6 +126,13 @@ pythonPackages = modules // import ./python-packages-generated.nix {
inherit python buildPythonPackage pygobject pycairo;
};
pyqt4 = import ../development/python-modules/pyqt/4.x.nix {
inherit (pkgs) stdenv fetchurl pkgconfig qt4 makeWrapper;
inherit (pkgs.xorg) lndir;
inherit python sip;
pythonDBus = dbus;
};
sip = import ../development/python-modules/sip {
inherit (pkgs) stdenv fetchurl;
inherit python;