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-03-28-00-19 * Add unbuilt updated ruby gem packages to updates-2025-03-28-00-19 * Add built packages for linux/386 to updates-2025-03-28-00-19 * Add built packages for linux/amd64 to updates-2025-03-28-00-19 * Add built packages for linux/arm/v7 to updates-2025-03-28-00-19 --------- 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>
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.40-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '6cd37d6c821a72d8f89502039ed27ad4ae82f30f9aeb719bfef07c01574128ae',
|
|
armv7l: '6cd37d6c821a72d8f89502039ed27ad4ae82f30f9aeb719bfef07c01574128ae',
|
|
i686: '3db0f4b4681efcad09d9af1be7ef3a1f5d0a48fc0852e2358a3b7af2e170355c',
|
|
x86_64: '916db50353744113c78cd41388ca9884358e7388149e55851283e695673e86f5'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
depends_on 'glibc' # R
|
|
|
|
no_source_build
|
|
end
|