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-03-14-00-19 * Add unbuilt updated ruby gem packages to updates-2025-03-14-00-19 * Add built packages for linux/386 to updates-2025-03-14-00-19 * Add built packages for linux/amd64 to updates-2025-03-14-00-19 * Add built packages for linux/arm/v7 to updates-2025-03-14-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>
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.3.0-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'd17163db6cb1b6679b058c777f38a2ba48dedae1093b303510f4a48455e77a7c',
|
|
armv7l: 'd17163db6cb1b6679b058c777f38a2ba48dedae1093b303510f4a48455e77a7c',
|
|
i686: '4e8e341b277816ba05150a1eb2029b66d23a6d0ce0ffe6e3a19ac8fd09528ed6',
|
|
x86_64: '7c9c1686f125127158da2ab787020d1eccba93978eb9c8ecbf0de5ce4e8a1c77'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
depends_on 'py3_hatchling' => :build
|
|
depends_on 'py3_hatch_vcs' => :build
|
|
|
|
no_source_build
|
|
end
|