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-06-27-00-22 * Add built packages for linux/386 to updates-2025-06-27-00-22 * Add built packages for linux/amd64 to updates-2025-06-27-00-22 * Add built packages for linux/arm/v7 to updates-2025-06-27-00-22 --------- 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 "6.0.0-#{CREW_PY_VER}"
|
|
license 'BSD-3'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'd8517affd273d8c4b3e0a54c49fa86b469aa114caebda7f5e08d8b80997c011b',
|
|
armv7l: 'd8517affd273d8c4b3e0a54c49fa86b469aa114caebda7f5e08d8b80997c011b',
|
|
i686: '70c6ef4b7573b37becaa2a20c32e56880572bf445da8a62bae24817c581e2ea1',
|
|
x86_64: 'b8ec84b9bb6aa5368286711564282aba92f73a80e7bea2304319a47f769c0448'
|
|
})
|
|
|
|
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
|