spotify / dh-virtualenv

Python virtualenvs in Debian packages

Home Page:http://dh-virtualenv.readthedocs.io/en/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pipenv support?

freddrake opened this issue · comments

Is pipenv support in the roadmap? (Is there a roadmap?)

pipenv is a mere convenience layer over virtualenv. What you probably really want is Pipfile support, and the answer to that is basically pipenv lock -r (until pipenv is maybe included in pip at some time).

You can even automate that by an override and create the requirements file on the fly during builds.

For now there is no immediate plans to support pipenv, if for nothing else than for the fact that we would add yet another dependency (and especially fast moving one).

Like pointed by @jhermann you should be able to do minimal amount of customisation to support Pipfile. If you end up doing it we could always document the procedure (as people do probably wonder this same question) and maybe down the line re-evaluate if we want to include it as a build option, similar to built in virtualenv

Closing this issue for now