nixpkgs/pkgs/development/libraries/python-qt/default.nix

45 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, python, qmake,
2018-12-03 01:11:16 +00:00
qtwebengine, qtxmlpatterns,
qttools, unzip }:
stdenv.mkDerivation rec {
version = "3.2";
pname = "python-qt";
2018-12-03 01:11:16 +00:00
src = fetchurl {
url="mirror://sourceforge/pythonqt/PythonQt${version}.zip";
sha256="13hzprk58m3yj39sj0xn6acg8796lll1256mpd81kw0z3yykyl8c";
};
hardeningDisable = [ "all" ];
nativeBuildInputs = [ qmake qtwebengine qtxmlpatterns qttools unzip ];
2018-12-03 01:11:16 +00:00
buildInputs = [ python ];
2018-12-03 01:11:16 +00:00
qmakeFlags = [ "PythonQt.pro"
"INCLUDEPATH+=${python}/include/python3.6"
"PYTHON_PATH=${python}/bin"
"PYTHON_LIB=${python}/lib"];
dontWrapQtApps = true;
2018-12-03 01:11:16 +00:00
unpackCmd = "unzip $src";
installPhase = ''
mkdir -p $out/include/PythonQt
cp -r ./lib $out
cp -r ./src/* $out/include/PythonQt
cp -r ./build $out/include/PythonQt
cp -r ./extensions $out/include/PythonQt
2018-12-03 01:11:16 +00:00
'';
meta = with lib; {
description = "PythonQt is a dynamic Python binding for the Qt framework. It offers an easy way to embed the Python scripting language into your C++ Qt applications";
homepage = "http://pythonqt.sourceforge.net/";
2018-12-03 01:11:16 +00:00
license = licenses.lgpl21;
platforms = platforms.all;
maintainers = with maintainers; [ hlolli ];
};
}