2018-07-21 01:44:44 +01:00
|
|
|
{ lib, fetchurl, cmake, buildPythonPackage, pysideGeneratorrunner, pysideShiboken, qt4 }:
|
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`.
|
2017-03-21 12:01:17 +00:00
|
|
|
buildPythonPackage rec {
|
2017-05-27 10:25:35 +01:00
|
|
|
pname = "pyside";
|
2015-12-10 20:39:11 +00:00
|
|
|
version = "1.2.4";
|
2017-03-21 12:01:17 +00:00
|
|
|
format = "other";
|
2011-12-17 20:16:45 +00:00
|
|
|
|
2014-08-01 12:50:09 +01:00
|
|
|
src = fetchurl {
|
2015-12-10 20:39:11 +00:00
|
|
|
url = "https://github.com/PySide/PySide/archive/${version}.tar.gz";
|
|
|
|
sha256 = "90f2d736e2192ac69e5a2ac798fce2b5f7bf179269daa2ec262986d488c3b0f7";
|
2011-12-17 20:16:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
buildInputs = [ cmake pysideGeneratorrunner pysideShiboken qt4 ];
|
|
|
|
|
|
|
|
makeFlags = "QT_PLUGIN_PATH=" + pysideShiboken + "/lib/generatorrunner";
|
|
|
|
|
|
|
|
meta = {
|
2013-10-06 10:49:53 +01:00
|
|
|
description = "LGPL-licensed Python bindings for the Qt cross-platform application and UI framework";
|
2016-09-01 16:11:04 +01:00
|
|
|
license = lib.licenses.lgpl21;
|
2017-08-01 21:03:30 +01:00
|
|
|
homepage = http://www.pyside.org;
|
2016-09-01 16:11:04 +01:00
|
|
|
maintainers = [ lib.maintainers.chaoflow ];
|
|
|
|
platforms = lib.platforms.all;
|
2011-12-17 20:16:45 +00:00
|
|
|
};
|
|
|
|
}
|