dev-python/tomli was only necessary for Python < 3.11. Since 3.11, the exact same library is part of the stdlib as `tomllib`. Packages that support older Python versions should do something akin to: if sys.version_info >= (3, 11): import tomllib else: import tomli as tomllib and depend on: tomli; python_version < "3.11"