1{ lib, fetchurl, cmake, pyside, qt4, pysideShiboken, buildPythonPackage }:
2
3# This derivation provides a Python module and should therefore be called via `python-packages.nix`.
4buildPythonPackage rec {
5 pname = "pyside-tools";
6 version = "0.2.15";
7 format = "other";
8
9 src = fetchurl {
10 url = "https://github.com/PySide/Tools/archive/0.2.15.tar.gz";
11 sha256 = "0x4z3aq7jgar74gxzwznl3agla9i1dcskw5gh11jnnwwn63ffzwa";
12 };
13
14 enableParallelBuilding = true;
15
16 nativeBuildInputs = [ cmake ];
17
18 buildInputs = [ qt4 ];
19
20 propagatedBuildInputs = [ pyside pysideShiboken ];
21
22 meta = {
23 description = "Tools for pyside, the LGPL-licensed Python bindings for the Qt cross-platform application and UI framework";
24 license = lib.licenses.gpl2;
25 homepage = http://www.pyside.org;
26 maintainers = [ ];
27 platforms = lib.platforms.all;
28 };
29}