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 name = "${pname}-${version}";
8 format = "other";
9
10 src = fetchurl {
11 url = "https://github.com/PySide/Tools/archive/0.2.15.tar.gz";
12 sha256 = "0x4z3aq7jgar74gxzwznl3agla9i1dcskw5gh11jnnwwn63ffzwa";
13 };
14
15 enableParallelBuilding = true;
16
17 buildInputs = [ cmake pyside qt4 pysideShiboken ];
18
19 meta = {
20 description = "Tools for pyside, the LGPL-licensed Python bindings for the Qt cross-platform application and UI framework";
21 license = lib.licenses.gpl2;
22 homepage = http://www.pyside.org;
23 maintainers = [ lib.maintainers.chaoflow ];
24 platforms = lib.platforms.all;
25 };
26}