blob: b8861464093a0d2fac8c584105cd96db1aa8cbfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
class PyenvPipMigrate < Formula
homepage "https://github.com/yyuu/pyenv-pip-migrate"
url "https://github.com/yyuu/pyenv-pip-migrate/archive/v20130527.tar.gz"
sha256 "1ec5a590a05792843d493a66825ede852b6afc6e95a6a2d2a813e73497c6637a"
head "https://github.com/yyuu/pyenv-pip-migrate.git"
depends_on "pyenv"
def install
prefix.install Dir["*"]
end
test do
shell_output("eval \"$(pyenv init -)\" && pyenv help migrate")
end
end
|