diff --git a/pkgs/development/python-modules/sip/default.nix b/pkgs/development/python-modules/sip/default.nix index 4053e20a08d0..c36e3acc30ea 100644 --- a/pkgs/development/python-modules/sip/default.nix +++ b/pkgs/development/python-modules/sip/default.nix @@ -9,17 +9,18 @@ , ply , toml , tomli +, poppler-qt5 }: buildPythonPackage rec { pname = "sip"; - version = "6.8.0"; + version = "6.8.1"; format = "pyproject"; src = fetchPypi { inherit pname version; - hash = "sha256-LtGQSCDLZhtyB+sdzPrr7BpUY9ytkDukSK0ZRVAtCJw="; + hash = "sha256-MALfQV4WisP/45OULbxxMcuCreUAAOFSb0aoit4m9Zg="; }; nativeBuildInputs = [ @@ -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/";