Unverified Commit 082f7689 authored by kirillrdy's avatar kirillrdy Committed by GitHub
Browse files

python3Packages.qasync: don't propagate pyqt5, use pyqt6 for checks (#498437)

parents 846ad5c9 c5415778
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -26,6 +26,7 @@

  # tests
  qt5,
  pyqt5,
  pytest-qt,
  pytestCheckHook,

@@ -77,6 +78,7 @@ buildPythonPackage rec {
  '';

  nativeCheckInputs = [
    pyqt5
    pytest-qt
    pytestCheckHook
  ];
+5 −4
Original line number Diff line number Diff line
@@ -2,7 +2,7 @@
  lib,
  buildPythonPackage,
  fetchFromGitHub,
  pyqt5,
  pyqt6,
  pytestCheckHook,
  uv-build,
}:
@@ -27,9 +27,10 @@ buildPythonPackage rec {

  build-system = [ uv-build ];

  dependencies = [ pyqt5 ];

  nativeCheckInputs = [ pytestCheckHook ];
  nativeCheckInputs = [
    pytestCheckHook
    pyqt6
  ];

  pythonImportsCheck = [ "qasync" ];