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-06-03-00-22 * Add built packages for linux/386 to updates-2025-06-03-00-22 * Add built packages for linux/amd64 to updates-2025-06-03-00-22 * Add built packages for linux/arm/v7 to updates-2025-06-03-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>
23 lines
736 B
Ruby
23 lines
736 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_typing_extensions < Pip
|
|
description 'Backported and Experimental Type Hints for Python 3.5+'
|
|
homepage 'https://github.com/python/typing/tree/master/typing_extensions'
|
|
version "4.14.0-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '922a9956e93860e0147dd3e6469d3df40c30ae2f7577b68e803d2bffa62401ee',
|
|
armv7l: '922a9956e93860e0147dd3e6469d3df40c30ae2f7577b68e803d2bffa62401ee',
|
|
i686: '1d91c14ec35a6f643d490efcb28b62e9acead390d2ad68c8449c3f31eca49b3f',
|
|
x86_64: 'a2b09c0ece6bff7b731d8d0213204af77e88da6580b10eefa7b6e9983671579e'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|