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-03-26-00-19 * Add unbuilt updated ruby gem packages to updates-2025-03-26-00-19 * Add built packages for linux/386 to updates-2025-03-26-00-19 * Add built packages for linux/amd64 to updates-2025-03-26-00-19 * Add built packages for linux/arm/v7 to updates-2025-03-26-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> Co-authored-by: Ed Reel <edreel@gmail.com>
24 lines
833 B
Ruby
24 lines
833 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_pyparsing < Pip
|
|
description 'The pyparsing module is an alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions.'
|
|
homepage 'https://github.com/pyparsing/pyparsing/'
|
|
version "3.2.3-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'f14fa0f35693627425a62897d448af02cb5d6817f7db91e751f30ffc0f0844fb',
|
|
armv7l: 'f14fa0f35693627425a62897d448af02cb5d6817f7db91e751f30ffc0f0844fb',
|
|
i686: '9960e5e40e2bed14ac9b7a17ab0dffdd2a23f29c3569db45adfa75bdb60dab79',
|
|
x86_64: '67dc5f7ed2f42e7849e9c03fc261f620ef15cfd27e461f3d02b19d97733ffece'
|
|
})
|
|
|
|
depends_on 'python3'
|
|
depends_on 'py3_flit_core'
|
|
|
|
no_source_build
|
|
end
|