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-01-30-00-18 * Add built packages for linux/386 to updates-2025-01-30-00-18 * Add built packages for linux/amd64 to updates-2025-01-30-00-18 * Add built packages for linux/arm/v7 to updates-2025-01-30-00-18 --------- 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>
31 lines
937 B
Ruby
31 lines
937 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_agate < Pip
|
|
description 'Agate is a data analysis library that is optimized for humans instead of machines.'
|
|
homepage 'https://agate.readthedocs.io/'
|
|
version "1.13.0-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '4bf66fde013bc281a503d215457029b4367f68c7887920d038e8d6468184e1fa',
|
|
armv7l: '4bf66fde013bc281a503d215457029b4367f68c7887920d038e8d6468184e1fa',
|
|
i686: '2196dbedccdfc64161c63602e5ac17ff4bc97b5ea5cad9d727cb347f105b0719',
|
|
x86_64: '46c6d7c22ccbf2df8af0bc019434e54ae41b5b483508e647ba4624fec21fabd6'
|
|
})
|
|
|
|
depends_on 'py3_babel'
|
|
depends_on 'py3_six'
|
|
depends_on 'py3_pyicu'
|
|
depends_on 'py3_pytimeparse'
|
|
depends_on 'py3_slugify'
|
|
depends_on 'py3_isodate'
|
|
depends_on 'py3_leather'
|
|
depends_on 'py3_parsedatetime'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|