summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyqt/4.x.nix
blob: 05cf0aba354b9df77fe32e6d31ea2f6d263a35d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{ stdenv, fetchurl, buildPythonPackage, python, dbus-python, sip, qt4, pkgconfig, lndir, dbus, makeWrapper }:

buildPythonPackage rec {
  pname = "PyQt-x11-gpl";
  version = "4.12";
  format = "other";

  src = fetchurl {
    url = "mirror://sourceforge/pyqt/PyQt4_gpl_x11-${version}.tar.gz";
    sha256 = "1nw8r88a5g2d550yvklawlvns8gd5slw53yy688kxnsa65aln79w";
  };

  postPatch = ''
    mkdir -p $out
    lndir ${dbus-python} $out
    rm -rf "$out/nix-support"

    export PYTHONPATH=$PYTHONPATH:$out/lib/${python.libPrefix}/site-packages
    ${stdenv.lib.optionalString stdenv.isDarwin ''
      export QMAKESPEC="unsupported/macx-clang-libc++" # macOS target after bootstrapping phase \
    ''}

    substituteInPlace configure.py \
      --replace 'install_dir=pydbusmoddir' "install_dir='$out/lib/${python.libPrefix}/site-packages/dbus/mainloop'" \
    ${stdenv.lib.optionalString stdenv.isDarwin ''
      --replace "qt_macx_spec = 'macx-g++'" "qt_macx_spec = 'unsupported/macx-clang-libc++'" # for bootstrapping phase \
    ''}

    chmod +x configure.py
    sed -i '1i#!${python.interpreter}' configure.py
  '';

  configureScript = "./configure.py";
  dontAddPrefix = true;
  configureFlags = [
    "--confirm-license"
    "--bindir=${placeholder "out"}/bin"
    "--destdir=${placeholder "out"}/${python.sitePackages}"
    "--plugin-destdir=${placeholder "out"}/lib/qt4/plugins"
    "--sipdir=${placeholder "out"}/share/sip/PyQt4"
    "--dbus=${stdenv.lib.getDev dbus-python}/include/dbus-1.0"
    "--verbose"
  ];

  nativeBuildInputs = [ pkgconfig lndir makeWrapper qt4 ];
  buildInputs = [ qt4 dbus ];

  propagatedBuildInputs = [ sip ];

  postInstall = ''
    for i in $out/bin/*; do
      wrapProgram $i --prefix PYTHONPATH : "$PYTHONPATH"
    done
  '';

  enableParallelBuilding = true;

  passthru = {
    qt = qt4;
  };

  meta = {
    description = "Python bindings for Qt";
    license = "GPL";
    homepage = "http://www.riverbankcomputing.co.uk";
    maintainers = [ stdenv.lib.maintainers.sander ];
    platforms = stdenv.lib.platforms.mesaPlatforms;
  };
}