1{ lib, buildPythonPackage, fetchFromGitHub, cmake, qt4, pyside, pysideShiboken }:
2
3buildPythonPackage rec {
4 pname = "pyside-tools";
5 version = "0.2.15";
6 format = "other";
7
8 src = fetchFromGitHub {
9 owner = "PySide";
10 repo = "Tools";
11 rev = version;
12 sha256 = "017i2yxgjrisaifxqnl3ym8ijl63l2yl6a3474dsqhlyqz2nx2ll";
13 };
14
15 nativeBuildInputs = [ cmake ];
16
17 buildInputs = [ qt4 ];
18
19 propagatedBuildInputs = [ pyside pysideShiboken ];
20
21 meta = with lib; {
22 broken = true;
23 description = "Development tools (pyside-uic/rcc/lupdate) for PySide, the LGPL-licensed Python bindings for the Qt framework";
24 license = licenses.gpl2;
25 homepage = "https://wiki.qt.io/PySide";
26 maintainers = [ ];
27 platforms = platforms.all;
28 };
29}