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-02-01-00-19 * Add unbuilt updated ruby gem packages to updates-2025-02-01-00-19 * Add built packages for linux/386 to updates-2025-02-01-00-19 * Add built packages for linux/amd64 to updates-2025-02-01-00-19 * Add built packages for linux/arm/v7 to updates-2025-02-01-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
668 B
Ruby
23 lines
668 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_certifi < Pip
|
|
description 'Certifi provides Mozilla\'s CA Bundle.'
|
|
homepage 'https://certifi.io/'
|
|
version "2025.1.31-#{CREW_PY_VER}"
|
|
license 'MPL-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'ace6311be305ab3e12071c0b60c8c1462e90cce9a8f77d36db1e010375ddb566',
|
|
armv7l: 'ace6311be305ab3e12071c0b60c8c1462e90cce9a8f77d36db1e010375ddb566',
|
|
i686: 'ec57ab7170dc78f7ea185d85be3081241869a46bbe40568c1715d2ebc0aa8661',
|
|
x86_64: '350f308b16b4f886128201c722b1fd1717f58bdfbfd3324bae44216bc1eb13cd'
|
|
})
|
|
|
|
depends_on 'python3' # L
|
|
|
|
no_source_build
|
|
end
|