mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add unbuilt updated pip packages to updates-2025-03-26-00-19 * Add unbuilt updated ruby gem packages to updates-2025-03-26-00-19 * Add built packages for linux/386 to updates-2025-03-26-00-19 * Add built packages for linux/amd64 to updates-2025-03-26-00-19 * Add built packages for linux/arm/v7 to updates-2025-03-26-00-19 --------- 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: Ed Reel <edreel@gmail.com>
26 lines
757 B
Ruby
26 lines
757 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_flit < Pip
|
|
description 'Flit provides simplified packaging of Python modules.'
|
|
homepage 'https://flit.pypa.io/'
|
|
version "3.12.0-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '8ba40243ce742d51c70124b8d74e9321e77f4cc6896bf6795cf0b559f1894cda',
|
|
armv7l: '8ba40243ce742d51c70124b8d74e9321e77f4cc6896bf6795cf0b559f1894cda',
|
|
i686: '6dadddc8188084eff72f702dc78972e28f6fd7849f2980e076ef0f63b373b11f',
|
|
x86_64: '544eca0d4abb07d44c5fdff0d381d16b1c994c725683d9731c7ae928adeb5de2'
|
|
})
|
|
|
|
depends_on 'py3_docutils'
|
|
depends_on 'py3_flit_core'
|
|
depends_on 'py3_tomli'
|
|
depends_on 'py3_tomli_w'
|
|
|
|
no_source_build
|
|
end
|