summary refs log tree commit diff
path: root/pkgs/development/python-modules/pyside/generatorrunner.nix
blob: 12ec5a7ef51b4bee725810764514e3061b15cc7b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchgit, cmake, pysideApiextractor, python27Packages, qt4 }:

stdenv.mkDerivation {
  name = "pyside-generatorrunner-0.6.15";

  src = fetchgit {
    url = "git://github.com/PySide/Generatorrunner.git";
    rev = "567ca6effaecdf97b33d1d13eada23bafe0f7535";
    sha256 = "182aba79af9fc865337f4befc96faf3eaca1ab9bcb902a57e0a68af49f071c74";
  };

  enableParallelBuilding = true;

  buildInputs = [ cmake pysideApiextractor python27Packages.sphinx qt4 ];

  meta = {
    description = "Eases the development of binding generators for C++ and Qt-based libraries by providing a framework to help automating most of the process";
    license = stdenv.lib.licenses.gpl2;
    homepage = "http://www.pyside.org/docs/generatorrunner/";
    maintainers = [ stdenv.lib.maintainers.chaoflow ];
    platforms = stdenv.lib.platforms.all;
  };
}