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-04-24-00-20 * Add unbuilt updated ruby gem packages to updates-2025-04-24-00-20 * Add built packages for linux/386 to updates-2025-04-24-00-20 * Add built packages for linux/amd64 to updates-2025-04-24-00-20 * Add built packages for linux/arm/v7 to updates-2025-04-24-00-20 --------- 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>
27 lines
809 B
Ruby
27 lines
809 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_lxml < Pip
|
|
description 'LXML is a Python library for processing XML and HTML.'
|
|
homepage 'https://lxml.de/'
|
|
version "5.4.0-#{CREW_PY_VER}"
|
|
license 'BSD-3'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'f9bf55374f51ae5e28cafae18d9a89fd8f96ff8ee78147619d6f7fa1ea54cfe0',
|
|
armv7l: 'f9bf55374f51ae5e28cafae18d9a89fd8f96ff8ee78147619d6f7fa1ea54cfe0',
|
|
i686: '5a447ffd74485b9ab3298dcda7b07bb4039baba42c70bbcecf728357aa28d868',
|
|
x86_64: '186c163f9f58125e127a6118c2461f1f10880bfbf29e478a41d6c6ed6ee0cb37'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'libxml2' # R
|
|
depends_on 'libxslt' # R
|
|
depends_on 'py3_cython' => :build
|
|
depends_on 'python3' # R
|
|
depends_on 'zlib' # R
|
|
no_source_build
|
|
end
|