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-28-00-22 * Add built packages for linux/386 to updates-2025-04-28-00-22 * Add built packages for linux/amd64 to updates-2025-04-28-00-22 * Add built packages for linux/arm/v7 to updates-2025-04-28-00-22 --------- 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>
24 lines
751 B
Ruby
24 lines
751 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_importlib_metadata < Pip
|
|
description 'Importlib metadata reads metadata from Python packages.'
|
|
homepage 'https://github.com/python/importlib_metadata/'
|
|
version "8.7.0-#{CREW_PY_VER}"
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'edb6858aa3baeabcc090282fe1617936ea85497994aac1d8196df21494571067',
|
|
armv7l: 'edb6858aa3baeabcc090282fe1617936ea85497994aac1d8196df21494571067',
|
|
i686: '17a1c31c8c44bb63ca18393ce7d1672ac46c5d0f1a4151f550e1b4c0e930c055',
|
|
x86_64: '95f674e7385f55c9e2653e546bbb2dab60900b9a57420ac3b51ab967c0f2fb2b'
|
|
})
|
|
|
|
depends_on 'py3_zipp'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|