1{ stdenv, fetchurl, cmake, pyside, python27, qt4, pysideShiboken }:
2
3stdenv.mkDerivation {
4 name = "pyside-tools-0.2.15";
5
6 src = fetchurl {
7 url = "https://github.com/PySide/Tools/archive/0.2.15.tar.gz";
8 sha256 = "0x4z3aq7jgar74gxzwznl3agla9i1dcskw5gh11jnnwwn63ffzwa";
9 };
10
11 enableParallelBuilding = true;
12
13 buildInputs = [ cmake pyside python27 qt4 pysideShiboken ];
14
15 meta = {
16 description = "Tools for pyside, the LGPL-licensed Python bindings for the Qt cross-platform application and UI framework";
17 license = stdenv.lib.licenses.gpl2;
18 homepage = "http://www.pyside.org";
19 maintainers = [ stdenv.lib.maintainers.chaoflow ];
20 platforms = stdenv.lib.platforms.all;
21 };
22}