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-03-15-00-19 * Add built packages for linux/386 to updates-2025-03-15-00-19 * Add built packages for linux/amd64 to updates-2025-03-15-00-19 * Add built packages for linux/arm/v7 to updates-2025-03-15-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>
26 lines
811 B
Ruby
26 lines
811 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_setuptools_rust < Pip
|
|
description 'Setuptools-rust provides rust support for setuptools.'
|
|
homepage 'https://github.com/PyO3/setuptools-rust'
|
|
version "1.11.0-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '4072d4655276ab7188e2197dede39c88b5c329a41f90a2add30b234f125375bd',
|
|
armv7l: '4072d4655276ab7188e2197dede39c88b5c329a41f90a2add30b234f125375bd',
|
|
i686: 'a5a056be26007b3b6b7f4cf0fbf38f4f85f8371971c3e2d741c8e71a26891e21',
|
|
x86_64: 'c3d6c55421000edce97631631b7d47ec9fcc28f08f602ad4bba24d2d2926e670'
|
|
})
|
|
|
|
depends_on 'rust'
|
|
depends_on 'py3_setuptools_scm' => :build
|
|
depends_on 'py3_typing_extensions' => :build
|
|
depends_on 'python3'
|
|
|
|
no_source_build
|
|
end
|