2021-12-06 16:07:01 +00:00
|
|
|
{ python, fetchurl, lib, stdenv,
|
2020-04-24 23:36:52 +00:00
|
|
|
cmake, ninja, qt5, shiboken2 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "pyside2";
|
2022-06-26 10:26:21 +00:00
|
|
|
version = "5.15.5";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2020-08-20 17:08:02 +00:00
|
|
|
url = "https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-${version}-src/pyside-setup-opensource-src-${version}.tar.xz";
|
2022-06-26 10:26:21 +00:00
|
|
|
sha256 = "0cwvw6695215498rsbm2xzkwaxdr3w7zfvy4kc62c01k6pxs881r";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
patches = [
|
|
|
|
./dont_ignore_optional_modules.patch
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
cd sources/pyside2
|
|
|
|
'';
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
"-DBUILD_TESTS=OFF"
|
|
|
|
"-DPYTHON_EXECUTABLE=${python.interpreter}"
|
|
|
|
];
|
|
|
|
|
2022-11-21 17:40:18 +00:00
|
|
|
NIX_CFLAGS_COMPILE = "-I${qt5.qtdeclarative.dev}/include/QtQuick/${qt5.qtdeclarative.version}/QtQuick";
|
|
|
|
|
2020-06-15 15:56:04 +00:00
|
|
|
nativeBuildInputs = [ cmake ninja qt5.qmake python ];
|
2022-07-18 16:21:45 +00:00
|
|
|
buildInputs = (with qt5; [
|
2020-04-24 23:36:52 +00:00
|
|
|
qtbase qtxmlpatterns qtmultimedia qttools qtx11extras qtlocation qtscript
|
|
|
|
qtwebsockets qtwebengine qtwebchannel qtcharts qtsensors qtsvg
|
2022-07-18 16:21:45 +00:00
|
|
|
]) ++ [
|
|
|
|
python.pkgs.setuptools
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
2020-06-15 15:56:04 +00:00
|
|
|
propagatedBuildInputs = [ shiboken2 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-02-19 19:06:45 +00:00
|
|
|
dontWrapQtApps = true;
|
|
|
|
|
2022-07-18 16:21:45 +00:00
|
|
|
postInstall = ''
|
|
|
|
cd ../../..
|
|
|
|
${python.interpreter} setup.py egg_info --build-type=pyside2
|
|
|
|
cp -r PySide2.egg-info $out/${python.sitePackages}/
|
|
|
|
'';
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "LGPL-licensed Python bindings for Qt";
|
|
|
|
license = licenses.lgpl21;
|
|
|
|
homepage = "https://wiki.qt.io/Qt_for_Python";
|
|
|
|
maintainers = with maintainers; [ gebner ];
|
|
|
|
};
|
|
|
|
}
|