2017-04-30 09:29:45 +01:00
|
|
|
{ lib, fetchurl, cmake, pyside, qt4, pysideShiboken, buildPythonPackage }:
|
2011-12-17 20:16:45 +00:00
|
|
|
|
2017-04-30 09:29:45 +01:00
|
|
|
# This derivation provides a Python module and should therefore be called via `python-packages.nix`.
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "pyside-tools";
|
|
|
|
version = "0.2.15";
|
|
|
|
name = "${pname}-${version}";
|
|
|
|
format = "other";
|
2011-12-17 20:16:45 +00:00
|
|
|
|
2014-08-01 12:50:09 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/PySide/Tools/archive/0.2.15.tar.gz";
|
|
|
|
sha256 = "0x4z3aq7jgar74gxzwznl3agla9i1dcskw5gh11jnnwwn63ffzwa";
|
2011-12-17 20:16:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2017-04-30 09:29:45 +01:00
|
|
|
buildInputs = [ cmake pyside qt4 pysideShiboken ];
|
2011-12-17 20:16:45 +00:00
|
|
|
|
|
|
|
meta = {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "Tools for pyside, the LGPL-licensed Python bindings for the Qt cross-platform application and UI framework";
|
2017-04-30 09:29:45 +01:00
|
|
|
license = lib.licenses.gpl2;
|
2011-12-17 20:16:45 +00:00
|
|
|
homepage = "http://www.pyside.org";
|
2017-04-30 09:29:45 +01:00
|
|
|
maintainers = [ lib.maintainers.chaoflow ];
|
|
|
|
platforms = lib.platforms.all;
|
2011-12-17 20:16:45 +00:00
|
|
|
};
|
|
|
|
}
|