mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt py3_urllib3 to updater-py3_urllib3-2.6.3-py3.14 * updater-py3_urllib3-2.6.3-py3.14: Package File Update Run on linux/386 container. * updater-py3_urllib3-2.6.3-py3.14: Package File Update Run on linux/amd64 container. * updater-py3_urllib3-2.6.3-py3.14: Package File Update Run on linux/arm/v7 container. --------- Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: chromebrew-actions[bot] <chromebrew-actions[bot]@users.noreply.github.com>
15 lines
348 B
Ruby
15 lines
348 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_urllib3 < Pip
|
|
description 'URLlib3 is an HTTP library with thread-safe connection pooling, file post, and more.'
|
|
homepage 'https://urllib3.readthedocs.io/'
|
|
version "2.6.3-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
end
|