minimal-snowplow-tracker: PEP517 installation

When installing dbt with a PEP517 compliant installer (e.g. poetry), I get an error like

#9 41.21   Backend 'setuptools.build_meta:__legacy__' is not available.
#9 41.21 
#9 41.21   at /usr/local/lib/python3.8/site-packages/poetry/installation/chef.py:147 in _prepare
#9 41.23       143│ 
#9 41.23       144│                 error = ChefBuildError("\n\n".join(message_parts))
#9 41.23       145│ 
#9 41.23       146│             if error is not None:
#9 41.23     → 147│                 raise error from None
#9 41.23       148│ 
#9 41.23       149│             return path
#9 41.23       150│ 
#9 41.23       151│     def _prepare_sdist(self, archive: Path, destination: Path | None = None) -> Path:
#9 41.23 
#9 41.23 Note: This error originates from the build backend, and is likely not a problem with poetry but with minimal-snowplow-tracker (0.0.2) not supporting PEP 517 builds. You can verify this by running 'pip wheel --use-pep517 "minimal-snowplow-tracker (==0.0.2)"'.

In poetry <=1.4.2, one can set the installer type to legacy to make this not happen. However, in poetry>=1.5.0, this is no longer an option. Would it be possible to upgrade how minimal-snowplow-tracker is built? It looks like it might be closed-source.