mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt updated pip packages to updates-2024-12-05-00-20 * Add updated packages for linux/386 to updates-2024-12-05-00-20 * Add updated packages for linux/amd64 to updates-2024-12-05-00-20 * Add updated packages for linux/arm/v7 to updates-2024-12-05-00-20 --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: Satadru Pramanik, DO, MPH, MEng <satadru@gmail.com>
23 lines
679 B
Ruby
23 lines
679 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_six < Pip
|
|
description 'Six is a Python 2 and 3 compatibility library.'
|
|
homepage 'https://six.readthedocs.io/'
|
|
version "1.17.0-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '3111858faa6980f5f3c35d7e1c4ea74727cec9a01f02faf7b36aaf461b25900c',
|
|
armv7l: '3111858faa6980f5f3c35d7e1c4ea74727cec9a01f02faf7b36aaf461b25900c',
|
|
i686: '193b269ced09120a68f580210e733472af23e6e40bac59b25983d2214140bed0',
|
|
x86_64: '578093e9b2902f8e832e8b4e6ed14db6bf25258097494e1958ba63e8652ffaa4'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|