mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add unbuilt updated pip packages to updates-2025-01-18-00-17 * Add built packages for linux/386 to updates-2025-01-18-00-17 * Add built packages for linux/amd64 to updates-2025-01-18-00-17 * Add built packages for linux/arm/v7 to updates-2025-01-18-00-17 --------- 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>
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.29.1-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '9d03d71af7e0eb7484998e14fe41855efc90f81eee07c7eaae9a305825586d56',
|
|
armv7l: '9d03d71af7e0eb7484998e14fe41855efc90f81eee07c7eaae9a305825586d56',
|
|
i686: 'def121742ed8dd36e2f9fef3053716341390ab431df982e8a2b6939ebe015730',
|
|
x86_64: '2b115fdfb0241c66fcbfab1e4e077717cf71c55bf6cf0ac196624a8f5b080c8c'
|
|
})
|
|
|
|
depends_on 'py3_distlib'
|
|
depends_on 'py3_platformdirs'
|
|
depends_on 'py3_six'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|