2018-03-06 18:31:46 +00:00
|
|
|
class Autopep8 < Formula
|
|
|
|
include Language::Python::Virtualenv
|
|
|
|
|
|
|
|
desc "Automatically formats Python code to conform to the PEP 8 style guide"
|
|
|
|
homepage "https://github.com/hhatto/autopep8"
|
2018-03-30 14:19:38 +00:00
|
|
|
url "https://github.com/hhatto/autopep8/archive/v1.3.5.tar.gz"
|
|
|
|
sha256 "45938f23d725f17f41477878aa423c7a8bcd5374df65f55d0a4b53a1da9477ae"
|
2018-03-06 18:31:46 +00:00
|
|
|
|
2018-03-08 09:01:58 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any_skip_relocation
|
|
|
|
sha256 "2ab913aa82b2ea9906a2578c3346aaf0f455320e4b80644112b1b56dfcc90234" => :high_sierra
|
|
|
|
sha256 "e0b3f83d42e8dae3d8acce34fb58a10d05c85ef0df4ef39a7d2392223d43ca89" => :sierra
|
|
|
|
sha256 "3a0c5883c51beb734c5a50e27f5b97cf1baae9f8b33dd516cc56401b3c7999ef" => :el_capitan
|
|
|
|
end
|
|
|
|
|
2018-03-06 18:31:46 +00:00
|
|
|
depends_on "python@2" if MacOS.version <= :snow_leopard
|
|
|
|
|
|
|
|
def install
|
|
|
|
venv = virtualenv_create(libexec)
|
|
|
|
system libexec/"bin/pip", "install", "-v", "--no-binary", ":all:",
|
|
|
|
"--ignore-installed", buildpath
|
|
|
|
system libexec/"bin/pip", "uninstall", "-y", name
|
|
|
|
venv.pip_install_and_link buildpath
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
output = shell_output("echo \"x='homebrew'\" | #{bin}/autopep8 -")
|
|
|
|
assert_equal "x = 'homebrew'", output.strip
|
|
|
|
end
|
|
|
|
end
|