New review comment by icp1994 on void-packages repository https://github.com/void-linux/void-packages/pull/40596#discussion_r1027087246 Comment: Or you could apply this patch which runs the tests without benchmarking thus removing the need of any extra dependency. Apply at your own risk! ```patch --- a/python/tests/group_session_test.py +++ b/python/tests/group_session_test.py @@ -62,14 +62,12 @@ index = inbound.first_known_index assert isinstance(index, int) - def test_encrypt(self, benchmark): - benchmark.weave(OutboundGroupSession.encrypt, lazy=True) + def test_encrypt(self): outbound = OutboundGroupSession() inbound = InboundGroupSession(outbound.session_key) assert "Test", 0 == inbound.decrypt(outbound.encrypt("Test")) - def test_decrypt(self, benchmark): - benchmark.weave(InboundGroupSession.decrypt, lazy=True) + def test_decrypt(self): outbound = OutboundGroupSession() inbound = InboundGroupSession(outbound.session_key) assert "Test", 0 == inbound.decrypt(outbound.encrypt("Test")) ```