python312Packages.pyqt6-webengine: 6.7.0 -> 6.8.0

This commit is contained in:
Nick Cao
2024-12-12 17:14:46 -05:00
parent 3dc4475ebb
commit f831c075dd
@@ -15,15 +15,15 @@
buildPythonPackage rec {
pname = "pyqt6-webengine";
version = "6.7.0";
format = "pyproject";
version = "6.8.0";
pyproject = true;
disabled = pythonOlder "3.6";
disabled = pythonOlder "3.9";
src = fetchPypi {
pname = "PyQt6_WebEngine";
inherit version;
hash = "sha256-aO3HrbbZ4nX13pVogeecyg1x+tQ5q+qhDYI7/1rFUAE=";
hash = "sha256-ZARepiK2pBiCwrGPVa6XFLhmCs/walTpEOtygiwvP/I=";
};
# fix include path and increase verbosity
@@ -53,18 +53,23 @@ buildPythonPackage rec {
dontWrapQtApps = true;
nativeBuildInputs = with qt6Packages; [
pkg-config
lndir
build-system = [
sip
qtwebengine
qmake
pyqt-builder
];
buildInputs = with qt6Packages; [ qtwebengine ];
dependencies = [
pyqt6
];
propagatedBuildInputs = [ pyqt6 ];
nativeBuildInputs = with qt6Packages; [
pkg-config
lndir
qtwebengine
qmake
];
buildInputs = with qt6Packages; [ qtwebengine ];
passthru = {
inherit sip;
@@ -80,12 +85,12 @@ buildPythonPackage rec {
"PyQt6.QtWebEngineWidgets"
];
meta = with lib; {
meta = {
description = "Python bindings for Qt6 WebEngine";
homepage = "https://riverbankcomputing.com/";
license = licenses.gpl3Only;
license = lib.licenses.gpl3Only;
inherit (mesa.meta) platforms;
maintainers = with maintainers; [
maintainers = with lib.maintainers; [
LunNova
nrdxp
];