homebrew-core/Formula/pip-tools.rb

71 lines
3.2 KiB
Ruby

class PipTools < Formula
include Language::Python::Virtualenv
desc "Locking and sync for Pip requirements files"
homepage "https://pip-tools.readthedocs.io"
url "https://files.pythonhosted.org/packages/cc/1c/dadd465f327dbe49d77d8d3bcd651607d3169a04ce06c7bf86fec8005425/pip-tools-6.9.0.tar.gz"
sha256 "b4762359978fd81a2b4b666e6dca15266bdc65680d06900c4da34243f35e4b5d"
license "BSD-3-Clause"
bottle do
sha256 cellar: :any_skip_relocation, arm64_monterey: "d38ee5a0f7f86efaa19cb41da99e6d1143f0f66234d25aadea06533aa70a0ff9"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "a89039da0bdec590913d2cc592faad877ca5586088f5344e7d98d543f58e87f1"
sha256 cellar: :any_skip_relocation, monterey: "e73076b9dc35e7c1eb609ea05ad06b608ccbc7767befcc51ff4d3602aab73e71"
sha256 cellar: :any_skip_relocation, big_sur: "d11beb54f28c9ccedd4ba4dce13350d244013b43932c0f02d35f805803b26fc2"
sha256 cellar: :any_skip_relocation, catalina: "9b483439a7466206506de25c0a14ea583c0d222e4b178c66004810cbccb36780"
sha256 cellar: :any_skip_relocation, x86_64_linux: "0c267dc5628afa673557f23e184a025412aab7cc52000fbb2afdb6711d6b957a"
end
depends_on "python@3.10"
resource "build" do
url "https://files.pythonhosted.org/packages/52/fa/931038182be739955cf83179d9b9a6ce9832bc5f9a917a006f765cb53a1f/build-0.8.0.tar.gz"
sha256 "887a6d471c901b1a6e6574ebaeeebb45e5269a79d095fe9a8f88d6614ed2e5f0"
end
resource "click" do
url "https://files.pythonhosted.org/packages/59/87/84326af34517fca8c58418d148f2403df25303e02736832403587318e9e8/click-8.1.3.tar.gz"
sha256 "7682dc8afb30297001674575ea00d1814d808d6a36af415a82bd481d37ba7b8e"
end
resource "packaging" do
url "https://files.pythonhosted.org/packages/df/9e/d1a7217f69310c1db8fdf8ab396229f55a699ce34a203691794c5d1cad0c/packaging-21.3.tar.gz"
sha256 "dd47c42927d89ab911e606518907cc2d3a1f38bbd026385970643f9c5b8ecfeb"
end
resource "pep517" do
url "https://files.pythonhosted.org/packages/4d/19/e11fcc88288f68ae48e3aa9cf5a6fd092a88e629cb723465666c44d487a0/pep517-0.13.0.tar.gz"
sha256 "ae69927c5c172be1add9203726d4b84cf3ebad1edcd5f71fcdc746e66e829f59"
end
resource "pyparsing" do
url "https://files.pythonhosted.org/packages/71/22/207523d16464c40a0310d2d4d8926daffa00ac1f5b1576170a32db749636/pyparsing-3.0.9.tar.gz"
sha256 "2b020ecf7d21b687f219b71ecad3631f644a47f01403fa1d1036b0c6416d70fb"
end
resource "tomli" do
url "https://files.pythonhosted.org/packages/c0/3f/d7af728f075fb08564c5949a9c95e44352e23dee646869fa104a3b2060a3/tomli-2.0.1.tar.gz"
sha256 "de526c12914f0c550d15924c62d72abc48d6fe7364aa87328337a31007fe8a4f"
end
resource "wheel" do
url "https://files.pythonhosted.org/packages/c0/6c/9f840c2e55b67b90745af06a540964b73589256cb10cc10057c87ac78fc2/wheel-0.37.1.tar.gz"
sha256 "e9a504e793efbca1b8e0e9cb979a249cf4a0a7b5b8c9e8b65a5e39d49529c1c4"
end
def install
virtualenv_install_with_resources
end
test do
(testpath/"requirements.in").write <<~EOS
pip-tools
typing-extensions
EOS
compiled = shell_output("#{bin}/pip-compile requirements.in -q -o -")
assert_match "This file is autogenerated by pip-compile", compiled
assert_match "# via pip-tools", compiled
end
end