mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-20 12:42:24 +00:00
pyqt5: Qt 5 infrastructure update
This commit is contained in:
parent
68ff859bf0
commit
05dbd07cd1
|
@ -1,4 +1,5 @@
|
|||
{ stdenv, fetchurl, python, pkgconfig, qt5, sip, pythonDBus, lndir, makeWrapper }:
|
||||
{ stdenv, fetchurl, python, pkgconfig, qtbase, qtsvg, qtwebkit, sip, pythonDBus
|
||||
, lndir, makeWrapper }:
|
||||
|
||||
let
|
||||
version = "5.4.2";
|
||||
|
@ -20,7 +21,7 @@ in stdenv.mkDerivation {
|
|||
|
||||
buildInputs = [
|
||||
python pkgconfig makeWrapper lndir
|
||||
qt5.base qt5.svg qt5.webkit
|
||||
qtbase qtsvg qtwebkit
|
||||
];
|
||||
|
||||
propagatedBuildInputs = [ sip ];
|
||||
|
|
|
@ -166,7 +166,7 @@ in modules // {
|
|||
pyqt5 = callPackage ../development/python-modules/pyqt/5.x.nix {
|
||||
sip = self.sip_4_16;
|
||||
pythonDBus = self.dbus;
|
||||
qt5 = pkgs.qt5;
|
||||
inherit (pkgs.qt5) qtbase qtsvg qtwebkit;
|
||||
};
|
||||
|
||||
pyside = callPackage ../development/python-modules/pyside { };
|
||||
|
|
Loading…
Reference in a new issue