poetry2nix
poetry2nix copied to clipboard
passing poetry config
Describe the issue
I am trying to use poetry2nix.mkPoetryEnv to set up a poetry environment but I have custom poetry no-binary config stored in a separate poetry.toml file. How can I pass that that file's contents to mkPoetryEnv in addition to my pyproject.toml and poetry.lock?
I have a somewhat similar problem, in that I have my credentials to a private package index stored in the poetry.toml file like so:
[http-basic.my_index]
username = "******"
password = "******"
I do not know if this is the right place for my use case though, as this is maybe an issue better addressed in pyproject.nix :thinking: