mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-05-01 03:00:26 -04:00
* py3_sqlalchemy -> 2.0.48-py3.14 in updater-py3_sqlalchemy-2.0.48-py3.14 * Mark packages from successful builds as automatically buildable. * updater-py3_sqlalchemy-2.0.48-py3.14: Package File Update Run on linux/386 container. * updater-py3_sqlalchemy-2.0.48-py3.14: Package File Update Run on linux/amd64 container. * updater-py3_sqlalchemy-2.0.48-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>
24 lines
714 B
Ruby
24 lines
714 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_sqlalchemy < Pip
|
|
description 'SQLalchemy is a database toolkit for Python.'
|
|
homepage 'https://sqlalchemy.org'
|
|
version "2.0.48-#{CREW_PY_VER}"
|
|
license 'MIT'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '4211c300876f1da771be59c5a28787e78104922a523544ea5b05ee03f8c0aa75',
|
|
armv7l: '4211c300876f1da771be59c5a28787e78104922a523544ea5b05ee03f8c0aa75',
|
|
i686: 'e47d5aba1b03ef6f660151ea0e39f5281ca6c8e7c797541b54233b79347c5982',
|
|
x86_64: '4991b1edba08eeb85da79c21ad57f596548accb902715e346ec2c2af61a4b0e9'
|
|
})
|
|
|
|
depends_on 'glibc' => :library
|
|
depends_on 'python3' => :logical
|
|
|
|
no_source_build
|
|
end
|