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-05-17-14-49 * Add built packages for linux/386 to updates-2025-05-17-14-49 * Add built packages for linux/amd64 to updates-2025-05-17-14-49 * Add built packages for linux/arm/v7 to updates-2025-05-17-14-49 --------- Co-authored-by: satmandu <satmandu@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
23 lines
800 B
Ruby
23 lines
800 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_nuitka < Pip
|
|
description 'Nuitka is a Python to binary compiler written in Python. You feed it your Python app, it does a lot of clever things, and spits out an executable or extension module.'
|
|
homepage 'https://nuitka.net/'
|
|
version "2.7.3-#{CREW_PY_VER}"
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'e92cc4bc2cefae32ea6b3ad174f6ab98065d3975a475126b7c9fdeb79a57b843',
|
|
armv7l: 'e92cc4bc2cefae32ea6b3ad174f6ab98065d3975a475126b7c9fdeb79a57b843',
|
|
i686: 'ecd2cc679d4c2fbe2e62f698ae1bc9d567f9ea3b8a78f87a1c73ea48f4757c8c',
|
|
x86_64: '8d86a6d334db0408fe5d7241e8610e5761fd3f566ab9080af79a0b1f396dddac'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|