2017-04-30 10:29:45 +02:00
|
|
|
{ stdenv, fetchurl, cmake, pysideApiextractor, python2, qt4 }:
|
2011-12-17 21:16:45 +01:00
|
|
|
|
2017-04-30 10:29:45 +02:00
|
|
|
# This derivation does not provide any Python module and should therefore be called via `all-packages.nix`.
|
|
|
|
let
|
|
|
|
pythonEnv = python2.withPackages(ps: with ps; [ sphinx ]);
|
|
|
|
pname = "pyside-generatorrunner";
|
|
|
|
version = "0.6.16";
|
2019-08-13 23:52:01 +02:00
|
|
|
in stdenv.mkDerivation {
|
2017-04-30 10:29:45 +02:00
|
|
|
name = "${pname}-${version}";
|
2011-12-17 21:16:45 +01:00
|
|
|
|
2014-08-01 13:50:09 +02:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/PySide/Generatorrunner/archive/0.6.16.tar.gz";
|
|
|
|
sha256 = "0vzk3cp0pfbhd921r8f1xkcz96znla39dhj074k623x9k26lj2sj";
|
2011-12-17 21:16:45 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-04-30 10:29:45 +02:00
|
|
|
buildInputs = [ cmake pysideApiextractor qt4 pythonEnv ];
|
2011-12-17 21:16:45 +01:00
|
|
|
|
|
|
|
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;
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://www.pyside.org/docs/generatorrunner/";
|
2019-02-22 16:14:13 +01:00
|
|
|
maintainers = [ ];
|
2011-12-17 21:16:45 +01:00
|
|
|
platforms = stdenv.lib.platforms.all;
|
|
|
|
};
|
|
|
|
}
|