Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 19.09 28 lines 737 B view raw
1{ lib, buildPythonPackage, fetchFromGitHub, cmake, qt4, pyside, pysideShiboken }: 2 3buildPythonPackage rec { 4 pname = "pyside-tools"; 5 version = "0.2.15"; 6 format = "other"; 7 8 src = fetchFromGitHub { 9 owner = "PySide"; 10 repo = "Tools"; 11 rev = version; 12 sha256 = "017i2yxgjrisaifxqnl3ym8ijl63l2yl6a3474dsqhlyqz2nx2ll"; 13 }; 14 15 nativeBuildInputs = [ cmake ]; 16 17 buildInputs = [ qt4 ]; 18 19 propagatedBuildInputs = [ pyside pysideShiboken ]; 20 21 meta = with lib; { 22 description = "Development tools (pyside-uic/rcc/lupdate) for PySide, the LGPL-licensed Python bindings for the Qt framework"; 23 license = licenses.gpl2; 24 homepage = https://wiki.qt.io/PySide; 25 maintainers = [ ]; 26 platforms = platforms.all; 27 }; 28}