Python does not allow dashes in module names, while some nix derivations use them in names (ex: setuptools-git).
We can either:
- try to resolve a dashed name given an underscored one, preferrably on the error path
- devise a hacky convention to work around than, like
'__' -> '-'
- devise an alternative import syntax free from that limitation
Python does not allow dashes in module names, while some nix derivations use them in names (ex:
setuptools-git).We can either:
'__'->'-'