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 buildInputs = [ cmake pyside qt4 pysideShiboken ];
17
18 meta = {
19 description = "Tools for pyside, the LGPL-licensed Python bindings for the Qt cross-platform application and UI framework";
20 license = lib.licenses.gpl2;
21 homepage = http://www.pyside.org;
22 maintainers = [ lib.maintainers.chaoflow ];
23 platforms = lib.platforms.all;
24 };
25}