class Deis < Formula homepage "http://deis.io" url "https://github.com/deis/deis/archive/v1.2.0.tar.gz" sha1 "564784fb52124f6549afbd2b4b4465b057deeb5f" bottle do cellar :any sha1 "bd876e59177eda9440eaa16ce36c62c3878b808b" => :yosemite sha1 "2957df19c6c933f795ba489054fdb98e58b346a4" => :mavericks sha1 "c6331fe7333a9ba59d0ecdb4f49d1d2652ad84e3" => :mountain_lion end depends_on :python if MacOS.version <= :snow_leopard depends_on "libyaml" resource "docopt" do url "https://pypi.python.org/packages/source/d/docopt/docopt-0.6.2.tar.gz" sha1 "224a3ec08b56445a1bd1583aad06b00692671e04" end resource "python-dateutil" do url "https://pypi.python.org/packages/source/p/python-dateutil/python-dateutil-2.2.tar.gz" sha1 "fbafcd19ea0082b3ecb17695b4cb46070181699f" end resource "PyYAML" do url "https://pypi.python.org/packages/source/P/PyYAML/PyYAML-3.11.tar.gz" sha1 "1a2d5df8b31124573efb9598ec6d54767f3c4cd4" end resource "requests" do url "https://pypi.python.org/packages/source/r/requests/requests-2.5.1.tar.gz" sha1 "f906c441be2f0e7a834cbf701a72788d3ac3d144" end resource "termcolor" do url "https://pypi.python.org/packages/source/t/termcolor/termcolor-1.1.0.tar.gz" sha1 "52045880a05c0fbd192343d9c9aad46a73d20e8c" end resource "six" do url "https://pypi.python.org/packages/source/s/six/six-1.9.0.tar.gz" sha1 "d168e6d01f0900875c6ecebc97da72d0fda31129" end def install ENV.prepend_create_path "PYTHONPATH", libexec/"vendor/lib/python2.7/site-packages" resources.each do |r| r.stage do system "python", *Language::Python.setup_install_args(libexec/"vendor") end end cd "client" do ENV.prepend_create_path "PYTHONPATH", libexec/"lib/python2.7/site-packages" system "python", *Language::Python.setup_install_args(libexec) end bin.install Dir[libexec/"bin/*"] bin.env_script_all_files(libexec/"bin", :PYTHONPATH => ENV["PYTHONPATH"]) end test do system "#{bin}/deis", "logout" end end