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>
23 lines
692 B
Ruby
23 lines
692 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_flit_core < Pip
|
|
description 'Flit provides simplified packaging of Python modules—core portions.'
|
|
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: '128c53aa3736a5a381d0f64e616112fb3ed7faffbd5973b5fe97e94281ed9fd6',
|
|
armv7l: '128c53aa3736a5a381d0f64e616112fb3ed7faffbd5973b5fe97e94281ed9fd6',
|
|
i686: 'fa7141967fd63b5b2eba5a2f4596a6eb4bef3963409d427bb78d3b7fbc97f5b1',
|
|
x86_64: '8729b4bba8fc770d6cf796c2cdef5e13783359f7005c6b4ed1975e2416bd538c'
|
|
})
|
|
|
|
depends_on 'python3'
|
|
|
|
no_source_build
|
|
end
|