mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-08 23:18:10 -05:00
* Adjust sed logic and update i686 hashes. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to sed * Add built packages for linux/arm/v7 to sed --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
30 lines
884 B
Ruby
30 lines
884 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_tox < Pip
|
|
description 'Command line driven CI frontend and development task automation tool.'
|
|
homepage 'https://tox.readthedocs.io/'
|
|
version "4.27.0-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '7d2b33c77953e60519ab729275ae2a51c68f624a288eedc1390b8b0cfebf4bff',
|
|
armv7l: '7d2b33c77953e60519ab729275ae2a51c68f624a288eedc1390b8b0cfebf4bff',
|
|
i686: 'c78317d5d1d4de744768d839925c19266771bbabde9128da96fe1d53793d3e64',
|
|
x86_64: '8cc029aed166b6c80fea4a690eb56dcf29490d0631e2489dba26e37778d3f24f'
|
|
})
|
|
|
|
depends_on 'py3_py'
|
|
depends_on 'py3_filelock'
|
|
depends_on 'py3_six'
|
|
depends_on 'py3_packaging'
|
|
depends_on 'py3_virtualenv'
|
|
depends_on 'py3_pluggy'
|
|
depends_on 'py3_toml'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|