mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt updated pip packages to updates-2025-01-22-00-18 * Add unbuilt updated ruby gem packages to updates-2025-01-22-00-18 * Add built packages for linux/386 to updates-2025-01-22-00-18 * Add built packages for linux/amd64 to updates-2025-01-22-00-18 * Add built packages for linux/arm/v7 to updates-2025-01-22-00-18 --------- 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>
25 lines
739 B
Ruby
25 lines
739 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_twine < Pip
|
|
description 'A utility for interacting with PyPI'
|
|
homepage 'https://pypi.python.org/pypi/twine'
|
|
version "6.1.0-#{CREW_PY_VER}"
|
|
license 'APACHE'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '5de8444352503d02339284e16b74ccc48feccd814f421ef477594e45b6f3e7f8',
|
|
armv7l: '5de8444352503d02339284e16b74ccc48feccd814f421ef477594e45b6f3e7f8',
|
|
i686: 'c737f890901cf02cf67a2f43dcf78eb6b21e2fc2abbec344698ce51733bf3d38',
|
|
x86_64: '1b5434099b6e68f77a27fa910b5d3ed0a21cb17d7a13cc288783a5fe271b9cb5'
|
|
})
|
|
|
|
depends_on 'py3_setuptools'
|
|
depends_on 'python3' => :build
|
|
depends_on 'rust' => :build
|
|
|
|
no_source_build
|
|
end
|