diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2026-02-17 17:14:38 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2026-02-17 22:42:40 -0800 |
| commit | fddb6013208ceb8d8a08b0c37ab5c41eb535ed04 (patch) | |
| tree | 68826474af027f8d292b594f2dfbaa14c51fb660 /meta-python | |
| parent | 8d589e07057245a210f1baab77b433731fe02bfe (diff) | |
| download | meta-openembedded-fddb6013208ceb8d8a08b0c37ab5c41eb535ed04.tar.gz | |
python3-flask-limiter: Add recipe
Rate limiting for flask applications. Add recipe for release 4.1.1:
- Ensure cli commands fail gracefully when cli dependencies
are not installed.
Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-flask-limiter_4.1.1.bb | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-flask-limiter_4.1.1.bb b/meta-python/recipes-devtools/python/python3-flask-limiter_4.1.1.bb new file mode 100644 index 0000000000..7c2e18ffba --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-flask-limiter_4.1.1.bb | |||
| @@ -0,0 +1,21 @@ | |||
| 1 | SUMMARY = "Rate Limiting extension for Flask" | ||
| 2 | DESCRIPTION = "Flask-Limiter adds rate limiting to Flask applications." | ||
| 3 | HOMEPAGE = "https://github.com/alisaifee/flask-limiter" | ||
| 4 | LICENSE = "MIT" | ||
| 5 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2455d5e574bc0fc489411ca45766ac78" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "ca11608fc7eec43dcea606964ca07c3bd4ec1ae89043a0f67f717899a4f48106" | ||
| 8 | |||
| 9 | PYPI_PACKAGE = "flask_limiter" | ||
| 10 | UPSTREAM_CHECK_PYPI_PACKAGE = "${PYPI_PACKAGE}" | ||
| 11 | |||
| 12 | inherit pypi python_hatchling | ||
| 13 | |||
| 14 | DEPENDS += "python3-hatch-vcs-native" | ||
| 15 | |||
| 16 | RDEPENDS:${PN} += " \ | ||
| 17 | python3-flask \ | ||
| 18 | python3-limits \ | ||
| 19 | python3-ordered-set \ | ||
| 20 | python3-werkzeug \ | ||
| 21 | " | ||
