From c03e56b8e6e2ecf6047445c8f3c737143c8a315f Mon Sep 17 00:00:00 2001 From: Charlotte Van Petegem Date: Sat, 18 Mar 2023 18:32:09 +0100 Subject: [PATCH] python3Packages.pywlroots: add qtile to passthru.tests --- pkgs/development/python-modules/pywlroots/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/python-modules/pywlroots/default.nix b/pkgs/development/python-modules/pywlroots/default.nix index 53f583cc7c28..68a4753ba06d 100644 --- a/pkgs/development/python-modules/pywlroots/default.nix +++ b/pkgs/development/python-modules/pywlroots/default.nix @@ -15,6 +15,7 @@ , xkbcommon , xorg , pytestCheckHook +, qtile }: buildPythonPackage rec { @@ -41,6 +42,8 @@ buildPythonPackage rec { pythonImportsCheck = [ "wlroots" ]; + passthru.tests = { inherit qtile; }; + meta = with lib; { homepage = "https://github.com/flacjacket/pywlroots"; description = "Python bindings to wlroots using cffi";