f34ce41345
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
89 lines
2 KiB
Nix
89 lines
2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
cmake,
|
|
ninja,
|
|
python,
|
|
moveBuildTree,
|
|
shiboken6,
|
|
}:
|
|
|
|
stdenv.mkDerivation (finalAttrs: {
|
|
pname = "pyside6";
|
|
|
|
inherit (shiboken6) version src;
|
|
|
|
sourceRoot = "pyside-setup-everywhere-src-${finalAttrs.version}/sources/pyside6";
|
|
|
|
# FIXME: cmake/Macros/PySideModules.cmake supposes that all Qt frameworks on macOS
|
|
# reside in the same directory as QtCore.framework, which is not true for Nix.
|
|
postPatch = lib.optionalString stdenv.isLinux ''
|
|
# Don't ignore optional Qt modules
|
|
substituteInPlace cmake/PySideHelpers.cmake \
|
|
--replace-fail \
|
|
'string(FIND "''${_module_dir}" "''${_core_abs_dir}" found_basepath)' \
|
|
'set (found_basepath 0)'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
cmake
|
|
ninja
|
|
python
|
|
] ++ lib.optionals stdenv.isDarwin [ moveBuildTree ];
|
|
|
|
buildInputs =
|
|
with python.pkgs.qt6;
|
|
[
|
|
# required
|
|
qtbase
|
|
python.pkgs.ninja
|
|
python.pkgs.packaging
|
|
python.pkgs.setuptools
|
|
]
|
|
++ lib.optionals stdenv.isLinux [
|
|
# optional
|
|
qt3d
|
|
qtcharts
|
|
qtconnectivity
|
|
qtdatavis3d
|
|
qtdeclarative
|
|
qthttpserver
|
|
qtmultimedia
|
|
qtnetworkauth
|
|
qtquick3d
|
|
qtremoteobjects
|
|
qtscxml
|
|
qtsensors
|
|
qtspeech
|
|
qtsvg
|
|
qttools
|
|
qtwebchannel
|
|
qtwebengine
|
|
qtwebsockets
|
|
];
|
|
|
|
propagatedBuildInputs = [ shiboken6 ];
|
|
|
|
cmakeFlags = [ "-DBUILD_TESTS=OFF" ];
|
|
|
|
dontWrapQtApps = true;
|
|
|
|
postInstall = ''
|
|
cd ../../..
|
|
${python.pythonOnBuildForHost.interpreter} setup.py egg_info --build-type=pyside6
|
|
cp -r PySide6.egg-info $out/${python.sitePackages}/
|
|
'';
|
|
|
|
meta = {
|
|
description = "Python bindings for Qt";
|
|
license = with lib.licenses; [
|
|
lgpl3Only
|
|
gpl2Only
|
|
gpl3Only
|
|
];
|
|
homepage = "https://wiki.qt.io/Qt_for_Python";
|
|
changelog = "https://code.qt.io/cgit/pyside/pyside-setup.git/tree/doc/changelogs/changes-${finalAttrs.version}?h=v${finalAttrs.version}";
|
|
maintainers = with lib.maintainers; [ gebner ];
|
|
platforms = lib.platforms.all;
|
|
};
|
|
})
|