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-03-01-00-21 * Add built packages for linux/386 to updates-2025-03-01-00-21 * Add built packages for linux/amd64 to updates-2025-03-01-00-21 * Add built packages for linux/arm/v7 to updates-2025-03-01-00-21 --------- 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
777 B
Ruby
26 lines
777 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_bcrypt < Pip
|
|
description 'Modern password hashing for your software and your servers.'
|
|
homepage 'https://github.com/pyca/bcrypt/'
|
|
version "4.3.0-#{CREW_PY_VER}"
|
|
license 'Apache-2.0'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '89bc8d87668272a2d4cc4f89f6b43a1ad280ebb560353b880201bf9be6df91d9',
|
|
armv7l: '89bc8d87668272a2d4cc4f89f6b43a1ad280ebb560353b880201bf9be6df91d9',
|
|
i686: '9df696602e576e35ae8b0408df55d5577f2a1e61718983b4cf615beda9088432',
|
|
x86_64: 'bde3b2e9450974dee000cca76b05b987590a75392e55dcfd3f0cf8bd4142c758'
|
|
})
|
|
|
|
depends_on 'python3'
|
|
depends_on 'gcc_lib' # R
|
|
depends_on 'glibc' # R
|
|
depends_on 'rust' => :build
|
|
|
|
no_source_build
|
|
end
|