There's a merged pull request on the void-packages repository python3-acme: remove mock as dependency. https://github.com/void-linux/void-packages/pull/20034 Description: `certbot renew` failed for me with ``` Traceback (most recent call last): File "/usr/bin/certbot", line 6, in from pkg_resources import load_entry_point File "/usr/lib/python3.8/site-packages/pkg_resources/__init__.py", line 3251, in def _initialize_master_working_set(): File "/usr/lib/python3.8/site-packages/pkg_resources/__init__.py", line 3234, in _call_aside f(*args, **kwargs) File "/usr/lib/python3.8/site-packages/pkg_resources/__init__.py", line 3263, in _initialize_master_working_set working_set = WorkingSet._build_master() File "/usr/lib/python3.8/site-packages/pkg_resources/__init__.py", line 583, in _build_master ws.require(__requires__) File "/usr/lib/python3.8/site-packages/pkg_resources/__init__.py", line 900, in require needed = self.resolve(parse_requirements(requirements)) File "/usr/lib/python3.8/site-packages/pkg_resources/__init__.py", line 786, in resolve raise DistributionNotFound(req, requirers) pkg_resources.DistributionNotFound: The 'mock' distribution was not found and is required by acme ``` this patch fixes that for me. another solution would be to add `python3-mock` as dependency but since it's also patched out in `certbot` (see #17915) i thought this might be the way to go.