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-02-25-00-19 * Add built packages for linux/386 to updates-2025-02-25-00-19 * Add built packages for linux/amd64 to updates-2025-02-25-00-19 * Add built packages for linux/arm/v7 to updates-2025-02-25-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>
23 lines
722 B
Ruby
23 lines
722 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_decorator < Pip
|
|
description 'define signature-preserving function decorators and decorator factories'
|
|
homepage 'https://github.com/micheles/decorator/'
|
|
version "5.2.1-#{CREW_PY_VER}"
|
|
license 'BSD-2'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '60c5bb69560f1d1cfab7a38e4bc9ededd101149fd0c180667504c308efdbf3e5',
|
|
armv7l: '60c5bb69560f1d1cfab7a38e4bc9ededd101149fd0c180667504c308efdbf3e5',
|
|
i686: '5b6f323f54d08e000c57d1edfb541eeda201ffce51d547bf29616d3a6c5622f6',
|
|
x86_64: '85b8075edafb741fc60bebf00c6334f1f4050f5cca2549903dfdde2ca4f5f8ba'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|