pypi2nix icon indicating copy to clipboard operation
pypi2nix copied to clipboard

Allow to install local packages

Open spinus opened this issue 5 years ago • 1 comments

I'm trying to have requirement like

-e ../local_package
# where inside `local_package` there is setup.py

Current pypi2nix 2.x omits this completely. I tried multiple forms with file://, absolute path -e, ./../path.

spinus avatar Jan 18 '20 03:01 spinus

Hi, because of current limitations in requirement parsing your have to specify your requirements like so:

../local_package#egg=package_name
file:///path/to/package#egg=other_package

Let me know if that helped.

seppeljordan avatar Jan 18 '20 12:01 seppeljordan