mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add binary_compression value to each package * Remove binary_url values and arrays * Handle packages with empty binary_sha256 arrays (either missing binaries or not compiled by us)
24 lines
833 B
Ruby
24 lines
833 B
Ruby
require 'buildsystems/python'
|
|
|
|
class Py3_pyproject_hooks < Python
|
|
description 'This package contains wrappers to call hooks on build backends for pyproject.toml -based projects'
|
|
homepage 'https://pyproject-hooks.readthedocs.io/'
|
|
@_ver = '1.0.0'
|
|
version "#{@_ver}-py3.12"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'https://github.com/pypa/pyproject-hooks.git'
|
|
git_hashtag "v#{@_ver}"
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '85dc082e0188d4e202957bf5c9bfb9405e4ce8432ab38a311dbddfe0529f4ecc',
|
|
armv7l: '85dc082e0188d4e202957bf5c9bfb9405e4ce8432ab38a311dbddfe0529f4ecc',
|
|
i686: '320ca6f093e9dfd90ef604dc602bd6c92775d5314c83027ccb3595805f59c7ba',
|
|
x86_64: 'd411f26747f2f0f5b55fa094cfe2fc0622c522f476bd3c6ae97934bdfddf1dc9'
|
|
})
|
|
|
|
depends_on 'python3'
|
|
depends_on 'py3_tomli'
|
|
end
|