Commit 918a7654 authored by fsagbuya's avatar fsagbuya
Browse files

python3Packages.qasync: don't propagate pyqt5, use pyqt6 for checks

parent 13946178
Loading
Loading
Loading
Loading
+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" ];