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-10-00-22 * Add built packages for linux/386 to updates-2025-07-10-00-22 * Add built packages for linux/amd64 to updates-2025-07-10-00-22 * Add built packages for linux/arm/v7 to updates-2025-07-10-00-22 --------- 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>
24 lines
694 B
Ruby
24 lines
694 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_pyright < Pip
|
|
description 'Static Type Checker for Python'
|
|
homepage 'https://github.com/microsoft/pyright'
|
|
version "1.1.403-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'a37bdd37bbdb05d4c98f72646613c06444f223ff075619ef791c1fcc0265f6b3',
|
|
armv7l: 'a37bdd37bbdb05d4c98f72646613c06444f223ff075619ef791c1fcc0265f6b3',
|
|
i686: '3084c63a533c58c9ed20bccf0fce1c233d5bdc889f93686015d6369fef832d12',
|
|
x86_64: '0ac56e402c4f03da37d55b65de7d434829f3717b1e3ef5fe4055e1b3d18442e5'
|
|
})
|
|
|
|
depends_on 'python3'
|
|
depends_on 'py3_nodeenv'
|
|
|
|
no_source_build
|
|
end
|