nixpkgs/pkgs/development/python-modules/pyside/default.nix

26 lines
815 B
Nix
Raw Normal View History

2016-09-01 15:11:04 +00:00
{ lib, fetchurl, cmake, python, mkPythonDerivation, pysideGeneratorrunner, pysideShiboken, qt4 }:
2016-09-01 15:11:04 +00:00
mkPythonDerivation rec {
2016-11-18 12:22:02 +00:00
name = "pyside-${version}";
2015-12-10 20:39:11 +00:00
version = "1.2.4";
src = fetchurl {
2015-12-10 20:39:11 +00:00
url = "https://github.com/PySide/PySide/archive/${version}.tar.gz";
sha256 = "90f2d736e2192ac69e5a2ac798fce2b5f7bf179269daa2ec262986d488c3b0f7";
};
enableParallelBuilding = true;
buildInputs = [ cmake pysideGeneratorrunner pysideShiboken qt4 ];
makeFlags = "QT_PLUGIN_PATH=" + pysideShiboken + "/lib/generatorrunner";
meta = {
description = "LGPL-licensed Python bindings for the Qt cross-platform application and UI framework";
2016-09-01 15:11:04 +00:00
license = lib.licenses.lgpl21;
homepage = "http://www.pyside.org";
2016-09-01 15:11:04 +00:00
maintainers = [ lib.maintainers.chaoflow ];
platforms = lib.platforms.all;
};
}