95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
19 lines
563 B
Ruby
19 lines
563 B
Ruby
class PyenvVirtualenvwrapper < Formula
|
|
desc "Alternative to pyenv for managing virtualenvs"
|
|
homepage "https://github.com/yyuu/pyenv-virtualenvwrapper"
|
|
url "https://github.com/yyuu/pyenv-virtualenvwrapper/archive/v20140609.tar.gz"
|
|
sha256 "c1c812c4954394c58628952654ba745c4fb814d045adc076f7fb9e310bed03bf"
|
|
|
|
head "https://github.com/yyuu/pyenv-virtualenvwrapper.git"
|
|
|
|
depends_on "pyenv"
|
|
|
|
def install
|
|
ENV["PREFIX"] = prefix
|
|
system "./install.sh"
|
|
end
|
|
|
|
test do
|
|
shell_output("eval \"$(pyenv init -)\" && pyenv virtualenvwrapper")
|
|
end
|
|
end
|