45 lines
1.8 KiB
Ruby
45 lines
1.8 KiB
Ruby
class Pydocstyle < Formula
|
|
include Language::Python::Virtualenv
|
|
|
|
desc "Python docstring style checker"
|
|
homepage "https://www.pydocstyle.org/"
|
|
url "https://files.pythonhosted.org/packages/4c/30/4cdea3c8342ad343d41603afc1372167c224a04dc5dc0bf4193ccb39b370/pydocstyle-6.1.1.tar.gz"
|
|
sha256 "1d41b7c459ba0ee6c345f2eb9ae827cab14a7533a88c5c6f7e94923f72df92dc"
|
|
license "MIT"
|
|
revision 1
|
|
head "https://github.com/PyCQA/pydocstyle.git", branch: "master"
|
|
|
|
bottle do
|
|
sha256 cellar: :any_skip_relocation, arm64_big_sur: "f484ef39a1a165ec192fafe7f6d76c1ebf5fa97d7499d729cf1de98c6444edef"
|
|
sha256 cellar: :any_skip_relocation, big_sur: "6a454e42222a31a0437d0d33197b068b952c5a48011fe107f0d0f14f707e36f1"
|
|
sha256 cellar: :any_skip_relocation, catalina: "a4091b17676b23f645aec6684939a19a2a5c05f991b25e9d4ebbf09c90764084"
|
|
sha256 cellar: :any_skip_relocation, mojave: "84a68e5f7328a5a2127b50254e52f13a3f68f8bc718dd8ef84ceae59461a3bbd"
|
|
end
|
|
|
|
depends_on "python@3.10"
|
|
|
|
resource "snowballstemmer" do
|
|
url "https://files.pythonhosted.org/packages/a3/3d/d305c9112f35df6efb51e5acd0db7009b74d86f35580e033451b5994a0a9/snowballstemmer-2.1.0.tar.gz"
|
|
sha256 "e997baa4f2e9139951b6f4c631bad912dfd3c792467e2f03d7239464af90e914"
|
|
end
|
|
|
|
resource "toml" do
|
|
url "https://files.pythonhosted.org/packages/be/ba/1f744cdc819428fc6b5084ec34d9b30660f6f9daaf70eead706e3203ec3c/toml-0.10.2.tar.gz"
|
|
sha256 "b3bda1d108d5dd99f4a20d24d9c348e91c4db7ab1b749200bded2f839ccbe68f"
|
|
end
|
|
|
|
def install
|
|
virtualenv_install_with_resources
|
|
end
|
|
|
|
test do
|
|
(testpath/"broken.py").write <<~EOS
|
|
def bad_docstring():
|
|
""" extra spaces """
|
|
pass
|
|
EOS
|
|
output = pipe_output("#{bin}/pydocstyle broken.py 2>&1")
|
|
assert_match "No whitespaces allowed surrounding docstring text", output
|
|
end
|
|
end
|