7e47f3658e
GitOrigin-RevId: 1925c603f17fc89f4c8f6bf6f631a802ad85d784
66 lines
1.8 KiB
Nix
66 lines
1.8 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
python3,
|
|
qmake,
|
|
qtwebengine,
|
|
qtxmlpatterns,
|
|
qttools,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "python-qt";
|
|
version = "3.5.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "MeVisLab";
|
|
repo = "pythonqt";
|
|
rev = "v${finalAttrs.version}";
|
|
hash = "sha256-uzOSm1Zcm5La0mDAbJko5YtxJ4WesPr9lRas+cwhNH4=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
qmake
|
|
qttools
|
|
qtxmlpatterns
|
|
qtwebengine
|
|
];
|
|
|
|
buildInputs = [ python3 ];
|
|
|
|
qmakeFlags = [
|
|
"PYTHON_DIR=${python3}"
|
|
"PYTHON_VERSION=3.${python3.sourceVersion.minor}"
|
|
];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
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
|
|
'';
|
|
|
|
preFixup = lib.optionalString stdenv.hostPlatform.isDarwin ''
|
|
install_name_tool -id \
|
|
$out/lib/libPythonQt-Qt5-Python3.${python3.sourceVersion.minor}.dylib \
|
|
$out/lib/libPythonQt-Qt5-Python3.${python3.sourceVersion.minor}.dylib
|
|
install_name_tool -change \
|
|
libPythonQt-Qt5-Python3.${python3.sourceVersion.minor}.3.dylib \
|
|
$out/lib/libPythonQt-Qt5-Python3.${python3.sourceVersion.minor}.3.dylib \
|
|
-id \
|
|
$out/lib/libPythonQt_QtAll-Qt5-Python3.${python3.sourceVersion.minor}.dylib \
|
|
$out/lib/libPythonQt_QtAll-Qt5-Python3.${python3.sourceVersion.minor}.dylib
|
|
'';
|
|
|
|
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 = "https://pythonqt.sourceforge.net/";
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ hlolli ];
|
|
};
|
|
})
|