mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-10 07:57:59 -05:00
* Add unbuilt updated pip packages to updates-2025-05-15-00-19 * Add unbuilt updated ruby gem packages to updates-2025-05-15-00-19 * Add built packages for linux/386 to updates-2025-05-15-00-19 * Add built packages for linux/amd64 to updates-2025-05-15-00-19 * Add built packages for linux/arm/v7 to updates-2025-05-15-00-19 * update maturin hash Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update hashes for py3_maturin. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * update ruff hash. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Update tools/build_updated_packages.rb and run it on i686. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/amd64 to updates-2025-05-15-00-19 * Adjust build hash adjustment algorithm. Signed-off-by: Satadru Pramanik <satadru@gmail.com> * Add built packages for linux/386 to updates-2025-05-15-00-19 * Add built packages for linux/amd64 to updates-2025-05-15-00-19 --------- Signed-off-by: Satadru Pramanik <satadru@gmail.com> 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> Co-authored-by: Satadru Pramanik <satadru@gmail.com> Co-authored-by: satmandu <satmandu@users.noreply.github.com>
24 lines
704 B
Ruby
24 lines
704 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_sqlalchemy < Pip
|
|
description 'SQLalchemy is a database toolkit for Python.'
|
|
homepage 'https://sqlalchemy.org'
|
|
version "2.0.41-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '18111a99ce4351a56d5fe0ab4e9513faf3337d6ab8b5d00515f3368f75898de4',
|
|
armv7l: '18111a99ce4351a56d5fe0ab4e9513faf3337d6ab8b5d00515f3368f75898de4',
|
|
i686: 'cc200fc68b6e9b27db6ee62469514fe00097b824c11735e720109b4309826803',
|
|
x86_64: '3a1abe9a956bc99d22efed641b23fe404c4b78aaea64237b503a2f608cc3816c'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
depends_on 'glibc' # R
|
|
|
|
no_source_build
|
|
end
|