homebrew-core/Formula/pip-tools.rb

56 lines
2.5 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/57/c1/26473668860f7436d101c99a4fad707be802d26f254ef7147a65f7d2e7c9/pip-tools-6.4.0.tar.gz"
sha256 "65553a15b1ba34be5e43889345062e38fb9b219ffa23b084ca0d4c4039b6f53b"
license "BSD-3-Clause"
bottle do
sha256 cellar: :any_skip_relocation, arm64_monterey: "b47371326f06f1c9598058df4212dfd803e5969efdeeed0c7cb9e1fa39146eaa"
sha256 cellar: :any_skip_relocation, arm64_big_sur: "f14ebaa026ffc43f0dbf5b039c205ba96bb957a912346d80451ff74bbe1b538e"
sha256 cellar: :any_skip_relocation, monterey: "385978df36d819bfca87b9993a3cb9c17fd8922d9afcaade05eac0c948333a49"
sha256 cellar: :any_skip_relocation, big_sur: "d40c9ae044aed7106dd09fbb0095d7f9bcb872e07872a431aca58f108827b653"
sha256 cellar: :any_skip_relocation, catalina: "7de1775230fc40a2e4b266b8918d048fa825f09f6cf0c60fd9312aacd89d28e0"
sha256 cellar: :any_skip_relocation, x86_64_linux: "b957574f88e386d443f05c3e5aae8c5b22d87b595d6357deb38196cbe9bd4995"
end
depends_on "python@3.10"
resource "click" do
url "https://files.pythonhosted.org/packages/f4/09/ad003f1e3428017d1c3da4ccc9547591703ffea548626f47ec74509c5824/click-8.0.3.tar.gz"
sha256 "410e932b050f5eed773c4cda94de75971c89cdb3155a72a0831139a79e5ecb5b"
end
resource "pep517" do
url "https://files.pythonhosted.org/packages/0a/65/6e656d49c679136edfba25f25791f45ffe1ea4ae2ec1c59fe9c35e061cd1/pep517-0.12.0.tar.gz"
sha256 "931378d93d11b298cf511dd634cf5ea4cb249a28ef84160b3247ee9afb4e8ab0"
end
resource "tomli" do
url "https://files.pythonhosted.org/packages/aa/5b/62165da80cbc6e1779f342234c7ddc6c6bc9e64cef149046a9c0456f912b/tomli-1.2.2.tar.gz"
sha256 "c6ce0015eb38820eaf32b5db832dbc26deb3dd427bd5f6556cf0acac2c214fee"
end
resource "wheel" do
url "https://files.pythonhosted.org/packages/4e/be/8139f127b4db2f79c8b117c80af56a3078cc4824b5b94250c7f81a70e03b/wheel-0.37.0.tar.gz"
sha256 "e2ef7239991699e3355d54f8e968a21bb940a1dbf34a4d226741e64462516fad"
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