1 { buildPythonPackage, python, fetchurl, lib, stdenv, pyside2
2 , cmake, qt5, llvmPackages }:
7 inherit (pyside2) version src;
10 ./nix_compile_cflags.patch
17 CLANG_INSTALL_DIR = llvmPackages.libclang.out;
19 nativeBuildInputs = [ cmake ];
20 buildInputs = [ llvmPackages.libclang python qt5.qtbase qt5.qtxmlpatterns ];
26 dontWrapQtApps = true;
29 rm $out/bin/shiboken_tool.py
33 description = "Generator for the PySide2 Qt bindings";
34 license = with licenses; [ gpl2 lgpl21 ];
35 homepage = "https://wiki.qt.io/Qt_for_Python";
36 maintainers = with maintainers; [ gebner ];
37 broken = stdenv.isDarwin;