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-02-07-00-18 * Add unbuilt updated ruby gem packages to updates-2025-02-07-00-18 * Add built packages for linux/386 to updates-2025-02-07-00-18 * Add built packages for linux/amd64 to updates-2025-02-07-00-18 * Add built packages for linux/arm/v7 to updates-2025-02-07-00-18 --------- 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.38-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '9694b2aeb3b6506304ce82e43df3c0546dbb297e5e934e398de5c219f90f59bf',
|
|
armv7l: '9694b2aeb3b6506304ce82e43df3c0546dbb297e5e934e398de5c219f90f59bf',
|
|
i686: '35024e94bdd92e3381d1ca830c2aeab507f4c000f185a173e5679d39d8c86be3',
|
|
x86_64: 'f4e7dede9e51ab538cbf023fb0a739a28a6f9377cf8f764845050bc3c5b11e20'
|
|
})
|
|
|
|
depends_on 'python3' => :build
|
|
depends_on 'glibc' # R
|
|
|
|
no_source_build
|
|
end
|