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

27 lines
852 B
Nix
Raw Normal View History

2017-04-30 10:29:45 +02:00
{ lib, fetchurl, cmake, pyside, qt4, pysideShiboken, buildPythonPackage }:
2011-12-17 20:16:45 +00:00
2017-04-30 10:29:45 +02: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 13:50:09 +02: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 10:29:45 +02:00
buildInputs = [ cmake pyside qt4 pysideShiboken ];
2011-12-17 20:16:45 +00:00
meta = {
2013-10-06 11:49:53 +02:00
description = "Tools for pyside, the LGPL-licensed Python bindings for the Qt cross-platform application and UI framework";
2017-04-30 10:29:45 +02:00
license = lib.licenses.gpl2;
homepage = http://www.pyside.org;
2017-04-30 10:29:45 +02:00
maintainers = [ lib.maintainers.chaoflow ];
platforms = lib.platforms.all;
2011-12-17 20:16:45 +00:00
};
}