mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Adjust sed logic and update i686 hashes. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to sed * Add built packages for linux/arm/v7 to sed --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@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.5.0-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
|
|
depends_on 'python3' => :build
|
|
|
|
no_compile_needed
|
|
end
|