Closed issue by lee2sman on void-packages repository https://github.com/void-linux/void-packages/issues/40880 Description: ### Is this a new report? Yes ### System Info Void 6.0.10_1 x86_64 GenuineIntel notuptodate FF ### Package(s) Affected visidata-2.8.2 ### Does a report exist for this bug with the project's home (upstream) and/or another distro? _No response_ ### Expected behaviour Hi I tried installing visidata and found it needed python3-setuptools installed as a dependency to get it to work. I don't yet understand how to do packaging work in Void or else i'd offer a PR. ### Actual behaviour Here's the fail from prior to also installing python3-setuptools that led me to figure out what additional dependency was needed ``` Traceback (most recent call last): File "/bin/visidata", line 33, in sys.exit(load_entry_point('visidata==2.8', 'console_scripts', 'visidata')()) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/bin/visidata", line 25, in importlib_load_entry_point return next(matches).load() ^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.11/importlib/metadata/__init__.py", line 198, in load module = import_module(match.group('module')) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "/usr/lib/python3.11/importlib/__init__.py", line 126, in import_module return _bootstrap._gcd_import(name[level:], package, level) ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ File "", line 1206, in _gcd_import File "", line 1178, in _find_and_load File "", line 1128, in _find_and_load_unlocked File "", line 241, in _call_with_frames_removed File "", line 1206, in _gcd_import File "", line 1178, in _find_and_load File "", line 1149, in _find_and_load_unlocked File "", line 690, in _load_unlocked File "", line 940, in exec_module File "", line 241, in _call_with_frames_removed File "/usr/lib/python3.11/site-packages/visidata/__init__.py", line 96, in import visidata.help File "/usr/lib/python3.11/site-packages/visidata/help.py", line 1, in from pkg_resources import resource_filename ModuleNotFoundError: No module named 'pkg_resources' ```` ### Steps to reproduce ``` sudo xbps-install visidata visidata ```