1{ stdenv, fetchurl, cmake, pysideApiextractor, python27Packages, qt4 }:
2
3stdenv.mkDerivation {
4 name = "pyside-generatorrunner-0.6.16";
5
6 src = fetchurl {
7 url = "https://github.com/PySide/Generatorrunner/archive/0.6.16.tar.gz";
8 sha256 = "0vzk3cp0pfbhd921r8f1xkcz96znla39dhj074k623x9k26lj2sj";
9 };
10
11 enableParallelBuilding = true;
12
13 buildInputs = [ cmake pysideApiextractor python27Packages.sphinx qt4 ];
14
15 meta = {
16 description = "Eases the development of binding generators for C++ and Qt-based libraries by providing a framework to help automating most of the process";
17 license = stdenv.lib.licenses.gpl2;
18 homepage = "http://www.pyside.org/docs/generatorrunner/";
19 maintainers = [ stdenv.lib.maintainers.chaoflow ];
20 platforms = stdenv.lib.platforms.all;
21 };
22}