From 6f441b4f153877493656c54cbb028bc958dc66b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Sun, 21 Jan 2024 15:27:01 -0800 Subject: [PATCH] python311Packages.sip: add poppler-qt5 to passthru.tests It breaks on sip 6.8.0 with NameError: name 'SocstringSignature' is not defined. Did you mean: 'DocstringSignature'? --- pkgs/development/python-modules/sip/default.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgs/development/python-modules/sip/default.nix b/pkgs/development/python-modules/sip/default.nix index b36e64e632cf..c36e3acc30ea 100644 --- a/pkgs/development/python-modules/sip/default.nix +++ b/pkgs/development/python-modules/sip/default.nix @@ -9,6 +9,7 @@ , ply , toml , tomli +, poppler-qt5 }: buildPythonPackage rec { @@ -36,6 +37,10 @@ buildPythonPackage rec { pythonImportsCheck = [ "sipbuild" ]; + passthru.tests = { + inherit poppler-qt5; + }; + meta = with lib; { description = "Creates C++ bindings for Python modules"; homepage = "https://riverbankcomputing.com/";