mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add unbuilt py3_virtualenv to updater-py3_virtualenv-20.35.3 * updater-py3_virtualenv-20.35.3: Package File Update Run on linux/386 container. * updater-py3_virtualenv-20.35.3: Package File Update Run on linux/amd64 container. * updater-py3_virtualenv-20.35.3: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
26 lines
778 B
Ruby
26 lines
778 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_virtualenv < Pip
|
|
description 'Virtualenv is a Virtual Environment builder for Python.'
|
|
homepage 'https://virtualenv.pypa.io/'
|
|
version "20.35.3-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '3be6fc69330e79d65a2043862a33464a43f075c38939fc04331843df96a36e7f',
|
|
armv7l: '3be6fc69330e79d65a2043862a33464a43f075c38939fc04331843df96a36e7f',
|
|
i686: '28538c454a137705994b726826f3ae038e7cc6dad6faf58b41519630183f9adf',
|
|
x86_64: '44201ebe7e65bbf7fc07435065a060e2c8a99b16c3f72d894a40e05e1a77f87a'
|
|
})
|
|
|
|
depends_on 'py3_distlib'
|
|
depends_on 'py3_platformdirs'
|
|
depends_on 'py3_six'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|