It would be handy to have support for using values from environment vars on pyproject.toml
The use case I have is that I need to use different repository urls depending on my environment.
Something like:
[[tool.poetry.source]]
name = "private"
url = "${PRIVATE_REPO_URL}"
I'm still new to poetry, but I could help implementing the feature with some guidance.