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-04-23-00-20 * Add unbuilt updated ruby gem packages to updates-2025-04-23-00-20 * Add built packages for linux/amd64 to updates-2025-04-23-00-20 * Add built packages for linux/arm/v7 to updates-2025-04-23-00-20 * Add i686 hashes Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> 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> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
24 lines
749 B
Ruby
24 lines
749 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_setuptools_scm < Pip
|
|
description 'Setuptools-scm is the blessed package to manage your versions by scm tags.'
|
|
homepage 'https://github.com/pypa/setuptools_scm'
|
|
version "8.3.0-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '8860d3c6ab0426b112cd094309599e7ef0bfff64840f448b74a32855f1ff7b64',
|
|
armv7l: '8860d3c6ab0426b112cd094309599e7ef0bfff64840f448b74a32855f1ff7b64',
|
|
i686: '6b630f0cb28fa9a513cc6d08322c77610ded59f5cf949f090926aab0f38b4169',
|
|
x86_64: '1d3af0188714f96c241b83d6784b5b8ffa63d1361abb9bbf04baf7e0dac39942'
|
|
})
|
|
|
|
depends_on 'py3_packaging'
|
|
depends_on 'py3_tomli'
|
|
|
|
no_source_build
|
|
end
|