mirror of
https://github.com/chromebrew/chromebrew.git
synced 2026-01-09 15:37:56 -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>
27 lines
822 B
Ruby
27 lines
822 B
Ruby
require 'buildsystems/pip'
|
|
|
|
class Py3_flask < Pip
|
|
description 'Flask is a simple framework for building complex web applications.'
|
|
homepage 'https://palletsprojects.com/p/flask/'
|
|
version "3.1.1-#{CREW_PY_VER}"
|
|
license 'BSD-3'
|
|
compatibility 'all'
|
|
source_url 'SKIP'
|
|
binary_compression 'tar.zst'
|
|
|
|
binary_sha256({
|
|
aarch64: '6b4e3aaddc02bb24599a57e4258e65920d16d28c86ddddda8881fe5d11274261',
|
|
armv7l: '6b4e3aaddc02bb24599a57e4258e65920d16d28c86ddddda8881fe5d11274261',
|
|
i686: 'e5753eb57a4a6f5080cb64fd00af86472bed54866727aa26c77ba42b429dce6a',
|
|
x86_64: 'ed25efed773de132122c44950a993cc832e9416903a2332d5543a20b882a5342'
|
|
})
|
|
|
|
depends_on 'py3_werkzeug'
|
|
depends_on 'py3_itsdangerous'
|
|
depends_on 'py3_click'
|
|
depends_on 'py3_jinja2'
|
|
depends_on 'python3' => :build
|
|
|
|
no_source_build
|
|
end
|