mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
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.10.1-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '02fd1c35ef6cc5087170eefb1491e99a5895f2477dab8d31e7c25f24b84c785d',
|
|
armv7l: '02fd1c35ef6cc5087170eefb1491e99a5895f2477dab8d31e7c25f24b84c785d',
|
|
i686: '9f0897e5c1dc5fe3dae65a8121307c60c8702577d6447d9c47c4bfa0e9339828',
|
|
x86_64: '580f966b7ab5293f90a558d605a87a8c5123342a60f40f8926dc2b5979d372bb'
|
|
})
|
|
|
|
depends_on 'py3_docutils'
|
|
depends_on 'py3_flit_core'
|
|
depends_on 'py3_tomli'
|
|
depends_on 'py3_tomli_w'
|
|
|
|
no_source_build
|
|
end
|