mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -05:00
* Add unbuilt updated pip packages to updates-2025-05-18-00-23 * Modify py3_numpy package to remove gold dep. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add some binaries. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Adjust pip logic. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Fix pip builds. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add binaries Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update py3_cryptography Signed-off-by: Satadru Pramanik <satadru@gmail.com> --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: github-merge-queue <github-merge-queue@users.noreply.github.com> Co-authored-by: Satadru Pramanik <satadru@gmail.com>
27 lines
817 B
Ruby
27 lines
817 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_pyopenssl < Pip
|
|
description 'PyOpenSSL is a Python wrapper module around the OpenSSL library.'
|
|
homepage 'https://www.pyopenssl.org/'
|
|
version "25.1.0-#{CREW_PY_VER}"
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '62e8b2d2b0e50745becf197997e1b55c613ea54898ba83479cbeb4a750371429',
|
|
armv7l: '62e8b2d2b0e50745becf197997e1b55c613ea54898ba83479cbeb4a750371429',
|
|
i686: 'f7d565a164ba1830e6232b5b1c15ac9de2fca288a9105e134c1cccc01fd1acaa',
|
|
x86_64: '57f4fe7a5d50c951fb36cb0785754127093e863fe81c4daef7365dea04c7ba01'
|
|
})
|
|
|
|
depends_on 'openssl'
|
|
depends_on 'py3_cryptography'
|
|
depends_on 'py3_six'
|
|
depends_on 'python3' => :build
|
|
depends_on 'rust' => :build
|
|
|
|
no_source_build
|
|
end
|