mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* Add unbuilt updated pip packages to updates-2025-07-11-00-22 * Add built packages for linux/386 to updates-2025-07-11-00-22 * Add built packages for linux/amd64 to updates-2025-07-11-00-22 * Add built packages for linux/arm/v7 to updates-2025-07-11-00-22 --------- 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>
23 lines
688 B
Ruby
23 lines
688 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_pybind11 < Pip
|
|
description 'Seamless operability between C++11 and Python'
|
|
homepage 'https://github.com/pybind/pybind11'
|
|
version "3.0.0-#{CREW_PY_VER}"
|
|
license 'BSD-3 Clause'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '38f07472cb80047c9d99d1e64fcd8fb09517bdf326bfd040d91a82c499624266',
|
|
armv7l: '38f07472cb80047c9d99d1e64fcd8fb09517bdf326bfd040d91a82c499624266',
|
|
i686: '96a65c2a405225ba8b56c27bb4619280b65cae46709c33476f665be5c734e7fa',
|
|
x86_64: 'd7b7fa1e23c34e9cbdec418a9fc70b3a6a0152ba717688704e91ce0806645146'
|
|
})
|
|
|
|
depends_on 'python3'
|
|
|
|
no_source_build
|
|
end
|