From 8b79709b6bb4f7e88400ac61f3c4e281876c7c78 Mon Sep 17 00:00:00 2001 From: Peder Bergebakken Sundt Date: Mon, 2 Jun 2025 05:56:22 +0200 Subject: [PATCH] python313Packages.dbus-next: migrate to pytest-cov-stub --- pkgs/development/python-modules/dbus-next/default.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/dbus-next/default.nix b/pkgs/development/python-modules/dbus-next/default.nix index b73691b3ca24..ea9add04940d 100644 --- a/pkgs/development/python-modules/dbus-next/default.nix +++ b/pkgs/development/python-modules/dbus-next/default.nix @@ -6,7 +6,6 @@ setuptools, dbus, pytest, - pytest-cov-stub, pytest-asyncio, pytest-timeout, }: @@ -28,7 +27,6 @@ buildPythonPackage rec { nativeCheckInputs = [ dbus pytest - pytest-cov-stub pytest-asyncio pytest-timeout ]; @@ -42,7 +40,7 @@ buildPythonPackage rec { checkPhase = '' runHook preCheck dbus-run-session --config-file=${dbus}/share/dbus-1/session.conf \ - ${python.interpreter} -m pytest -sv --cov=dbus_next \ + ${python.interpreter} -m pytest -sv \ -k "not test_peer_interface and not test_tcp_connection_with_forwarding" runHook postCheck '';