proxy.py/helper/homebrew/stable/proxy.rb

21 lines
735 B
Ruby

class Proxy < Formula
include Language::Python::Virtualenv
desc "⚡⚡⚡ Fast, Lightweight, Pluggable, TLS interception capable proxy server focused on
Network monitoring, controls & Application development, testing, debugging."
homepage "https://github.com/abhinavsingh/proxy.py"
url "https://github.com/abhinavsingh/proxy.py/archive/master.zip"
version "2.0.0"
depends_on "python"
resource "typing-extensions" do
url "https://files.pythonhosted.org/packages/e7/dd/f1713bc6638cc3a6a23735eff6ee09393b44b96176d3296693ada272a80b/typing_extensions-3.7.4.1.tar.gz"
sha256 "091ecc894d5e908ac75209f10d5b4f118fbdb2eb1ede6a63544054bb1edb41f2"
end
def install
virtualenv_install_with_resources
end
end