aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/pyside/tools.nix
blob: 9698c09f347847730f3e8c7c25636162b5493c3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, buildPythonPackage, fetchFromGitHub, cmake, qt4, pyside, pysideShiboken }:

buildPythonPackage rec {
  pname = "pyside-tools";
  version = "0.2.15";
  format = "other";

  src = fetchFromGitHub {
    owner = "PySide";
    repo = "Tools";
    rev = version;
    sha256 = "017i2yxgjrisaifxqnl3ym8ijl63l2yl6a3474dsqhlyqz2nx2ll";
  };

  nativeBuildInputs = [ cmake ];

  buildInputs = [ qt4 ];

  propagatedBuildInputs = [ pyside pysideShiboken ];

  meta = with lib; {
    description = "Development tools (pyside-uic/rcc/lupdate) for PySide, the LGPL-licensed Python bindings for the Qt framework";
    license = licenses.gpl2;
    homepage = "https://wiki.qt.io/PySide";
    maintainers = [ ];
    platforms = platforms.all;
  };
}