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-01-26-00-18 * Add built packages for linux/386 to updates-2025-01-26-00-18 * Add built packages for linux/amd64 to updates-2025-01-26-00-18 * Add built packages for linux/arm/v7 to updates-2025-01-26-00-18 --------- 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>
25 lines
772 B
Ruby
25 lines
772 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_attrs < Pip
|
|
description 'Attrs removes the need to implement object protocols in classes.'
|
|
homepage 'https://www.attrs.org/'
|
|
version "25.1.0-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '6daadd3771f42ee6caecc67480f8d2b3e55c64a0fa34bbb172d0e66364128e08',
|
|
armv7l: '6daadd3771f42ee6caecc67480f8d2b3e55c64a0fa34bbb172d0e66364128e08',
|
|
i686: '17364e7ff9b412660030b84386d16a2c354db1244c828219b32391a0754e20ff',
|
|
x86_64: '892c7de7e26e139c609588aba230efaff9c7be20a549880310c0e4bf876bf629'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
depends_on 'py3_hatchling' => :build
|
|
depends_on 'py3_hatch_vcs' => :build
|
|
|
|
no_source_build
|
|
end
|