mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add unbuilt updated pip packages to updates-2025-03-11-00-19 * Add unbuilt updated ruby gem packages to updates-2025-03-11-00-19 * Add built packages for linux/386 to updates-2025-03-11-00-19 * Add built packages for linux/amd64 to updates-2025-03-11-00-19 * Add built packages for linux/arm/v7 to updates-2025-03-11-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
709 B
Ruby
23 lines
709 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_cssselect < Pip
|
|
description 'CSSselect parses CSS3 Selectors and translates them to XPath 1.0.'
|
|
homepage 'https://cssselect.readthedocs.io/'
|
|
version "1.3.0-#{CREW_PY_VER}"
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'b014aad510cdd26983acf3608326ff7783f6824fde3fb026e1176eae32de3474',
|
|
armv7l: 'b014aad510cdd26983acf3608326ff7783f6824fde3fb026e1176eae32de3474',
|
|
i686: '8aef06c7233ee4aeaefc28bad61751a3b23e2cccdf2842d305bc4b63abb8b16c',
|
|
x86_64: '5416b9bf1a082863d0a073407bc996317fc3881ff8ad773a4881368411ad1882'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|