mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* rebuild json_glib Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update some spirv_tools binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * add more builds Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update py3_urllib3 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add qemu binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update version variable for py3_urllib3 Signed-off-by: Satadru Pramanik <satadru@gmail.com> * lint Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com>
15 lines
340 B
Ruby
15 lines
340 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.2.2-py3.12'
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
end
|