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-02-20-00-19 * Add built packages for linux/386 to updates-2025-02-20-00-19 * Add built packages for linux/amd64 to updates-2025-02-20-00-19 * Add built packages for linux/arm/v7 to updates-2025-02-20-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>
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.11.0-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '2c145233463601c0c38af5847850d9d0d190ccafd7422f68cf2f76ded5f2d7ed',
|
|
armv7l: '2c145233463601c0c38af5847850d9d0d190ccafd7422f68cf2f76ded5f2d7ed',
|
|
i686: 'ccb6c052aebe3039357ac871576c0ffe2bc3226b5d0f24bd18b24c44b386a070',
|
|
x86_64: 'dfe46d648fa315944c7ee2b4b5485feec2c9cc44b0d57c9420acc25a92ec1dfd'
|
|
})
|
|
|
|
depends_on 'py3_docutils'
|
|
depends_on 'py3_flit_core'
|
|
depends_on 'py3_tomli'
|
|
depends_on 'py3_tomli_w'
|
|
|
|
no_source_build
|
|
end
|