From 918a7654f24e8fc9ba148de090f882ecb1ade883 Mon Sep 17 00:00:00 2001 From: fsagbuya Date: Tue, 10 Mar 2026 11:16:52 +0800 Subject: [PATCH] python3Packages.qasync: don't propagate pyqt5, use pyqt6 for checks --- pkgs/development/python-modules/qasync/default.nix | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pkgs/development/python-modules/qasync/default.nix b/pkgs/development/python-modules/qasync/default.nix index 5ef1ad8242de..c1b317c445e2 100644 --- a/pkgs/development/python-modules/qasync/default.nix +++ b/pkgs/development/python-modules/qasync/default.nix @@ -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" ];