mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-07 22:54:11 -05:00
* Add unbuilt py3_pynacl to updater-py3_pynacl-1.6.2-py3.14 * updater-py3_pynacl-1.6.2-py3.14: Package File Update Run on linux/386 container. * updater-py3_pynacl-1.6.2-py3.14: Package File Update Run on linux/amd64 container. * updater-py3_pynacl-1.6.2-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>
26 lines
769 B
Ruby
26 lines
769 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_pynacl < Pip
|
|
description 'Python binding to the Networking and Cryptography (NaCl) library'
|
|
homepage 'https://github.com/pyca/pynacl'
|
|
version "1.6.2-#{CREW_PY_VER}"
|
|
license 'BSD'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: 'afba8591fab8133eb7813d834c466ac399fe4757d4a646d411103041c90af079',
|
|
armv7l: 'afba8591fab8133eb7813d834c466ac399fe4757d4a646d411103041c90af079',
|
|
i686: '75efad52833e54dca8f849f05ff5643d91828cf85c6457c83297a0940d66f7be',
|
|
x86_64: '54138afd06f9d2470adc5fcb6eb41a3107e069a6faa7c6300be8c66fc11f5e5c'
|
|
})
|
|
|
|
depends_on 'glibc' # R
|
|
depends_on 'libsodium'
|
|
depends_on 'python3'
|
|
depends_on 'python3' # R
|
|
|
|
no_source_build
|
|
end
|