Hey all! I've been strugling with a plugin, `tap-z...
# troubleshooting
k
Hey all! I've been strugling with a plugin,
tap-zendesk-sell
, as it fails to install. The error code from pip is
Installing build dependencies: finished with status 'error'
, but I've manually checked the dependencies of the plugin, and I seem to have them all covered. Any thoughs? Doing this on a venv, where I've only added meltano, its requirements and then trying to add this plugin.
1
e
Hi @Kristoffer Grorud! That tap is a bit stale it seems. I'm sure it's failing to build because it's referencing the
master
branch of poetry-core, which no longer exists: https://github.com/leag/tap-zendesk-sell/blob/81b8b523c90948c2b7ddc86526bd76609af1ee12/pyproject.toml#L43 If you can fork the repo, update that line to
requires = ["poetry-core==1.8.1"]
, then point your
pip_url
to your fork, that should fix the installation error for you. As a treat you could let the maintainer of https://github.com/leag/tap-zendesk-sell in an issue that you have a fork with a patch in case they're interested in a pull request.
k
Thank you so much! I will definitively do that!
🙌 1