mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt updated pip packages to updates-2025-04-04-00-20 * Add unbuilt updated ruby gem packages to updates-2025-04-04-00-20 * Add built packages for linux/386 to updates-2025-04-04-00-20 * Add built packages for linux/amd64 to updates-2025-04-04-00-20 * Add built packages for linux/arm/v7 to updates-2025-04-04-00-20 --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
23 lines
708 B
Ruby
23 lines
708 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_argcomplete < Pip
|
|
description 'Argcomplete provides bash completion for argparse.'
|
|
homepage 'https://kislyuk.github.io/argcomplete/'
|
|
version "3.6.2-#{CREW_PY_VER}"
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '9f8c5cade338192e33eba1574a4ac67f744d05c386f822c7c29c19f5fba23f98',
|
|
armv7l: '9f8c5cade338192e33eba1574a4ac67f744d05c386f822c7c29c19f5fba23f98',
|
|
i686: 'a1d60368e7fba6be696c534bbc66d6b1e79f521f982154dec4761f5562c83ef2',
|
|
x86_64: '9c6c6766995470f21285e50a10501ed734444156b96591196b9dc6830c19d14c'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|