mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt updated pip packages to updates-2025-02-01-00-19 * Add unbuilt updated ruby gem packages to updates-2025-02-01-00-19 * Add built packages for linux/386 to updates-2025-02-01-00-19 * Add built packages for linux/amd64 to updates-2025-02-01-00-19 * Add built packages for linux/arm/v7 to updates-2025-02-01-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>
23 lines
683 B
Ruby
23 lines
683 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_pytz < Pip
|
|
description 'pytz brings the Olson tz database into Python.'
|
|
homepage 'https://pythonhosted.org/pytz/'
|
|
version "2025.1-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'ea12c5b807a3c5e30c3ac816196fcaa12f63ba9afb7b01b5c96d13248663cec0',
|
|
armv7l: 'ea12c5b807a3c5e30c3ac816196fcaa12f63ba9afb7b01b5c96d13248663cec0',
|
|
i686: '8a27bef899ffac9d3653236c5a11f46569b7c1a902a8b08058e4f7d35c8cb769',
|
|
x86_64: 'f2e07d507b7a22686eadcbfa9a4b47e862c55dfa6fafc0ec88affc8e036c0f2e'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|