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-07-14-00-24 * Add built packages for linux/386 to branch updates-2025-07-14-00-24. * Add built packages for linux/amd64 to branch updates-2025-07-14-00-24. * Add built packages for linux/arm/v7 to branch updates-2025-07-14-00-24. --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
23 lines
744 B
Ruby
23 lines
744 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_pypdf < Pip
|
|
description 'A pure-python PDF library capable of splitting, merging, cropping, and transforming the pages of PDF files.'
|
|
homepage 'https://github.com/py-pdf/pypdf'
|
|
version "5.8.0-#{CREW_PY_VER}"
|
|
license 'BSD-3-Clause'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'd983814a2bf7c4db9c9c84d19b700af0ce13a179e600da7f92fe0d06d114cd4e',
|
|
armv7l: 'd983814a2bf7c4db9c9c84d19b700af0ce13a179e600da7f92fe0d06d114cd4e',
|
|
i686: '3627477a248c94599b04172055c322a10c3c51f9084ae1ed49458fdf1bcb1f41',
|
|
x86_64: '9052982d823882a31fe52ada5f44a8e5bbb8112877b378c4d86fd0aac5fc5a5f'
|
|
})
|
|
|
|
depends_on 'python3'
|
|
|
|
no_source_build
|
|
end
|