mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-06 22:24:12 -05:00
* Add unbuilt updated pip packages to updates-2025-03-06-00-19 * Add built packages for linux/386 to updates-2025-03-06-00-19 * Add built packages for linux/amd64 to updates-2025-03-06-00-19 * Add built packages for linux/arm/v7 to updates-2025-03-06-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>
24 lines
722 B
Ruby
24 lines
722 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_tzlocal < Pip
|
|
description 'Tzlocal provides tzinfo object for the local timezone.'
|
|
homepage 'https://github.com/regebro/tzlocal/'
|
|
version "5.3.1-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'd80f0ab99a95b47cc01d721d6ab44bcd7dc9c4ba6a0efa2cfb386205d6f35b7b',
|
|
armv7l: 'd80f0ab99a95b47cc01d721d6ab44bcd7dc9c4ba6a0efa2cfb386205d6f35b7b',
|
|
i686: '789943f2424f447691cf8c4b60de990c9f056cc99d957a2ff97631900e7658a2',
|
|
x86_64: '62f8a5eafed409fc1c76323e3b1dc69bf4a1daf50ea45de438fcb1a5f2cb08a8'
|
|
})
|
|
|
|
depends_on 'py3_pytz'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|