Files
nixpkgs/pkgs/development/python-modules/pyside/generatorrunner.nix
T

28 lines
998 B
Nix
Raw Normal View History

2017-04-30 10:29:45 +02:00
{ stdenv, fetchurl, cmake, pysideApiextractor, python2, qt4 }:
2011-12-17 20:16:45 +00: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 ]);
in stdenv.mkDerivation rec {
pname = "pyside-generatorrunner";
version = "0.6.16";
name = "${pname}-${version}";
2011-12-17 20:16:45 +00: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 20:16:45 +00:00
};
enableParallelBuilding = true;
2017-04-30 10:29:45 +02:00
buildInputs = [ cmake pysideApiextractor qt4 pythonEnv ];
2011-12-17 20:16:45 +00: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;
homepage = http://www.pyside.org/docs/generatorrunner/;
2011-12-17 20:16:45 +00:00
maintainers = [ stdenv.lib.maintainers.chaoflow ];
platforms = stdenv.lib.platforms.all;
};
}