mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2025-07-19 15:29:08 +02:00

Changelog: =========== - fix: invalid rst code - Merge pull request #262 from bdraco/3110_compat - Fix compat with aiohttp 3.11.0+ - Merge pull request #233 from outp1/master - Merge pull request #251 from chs2/feat/callable-raise-for-status - Merge pull request #256 from DanielNoord/patch-1 - Update __version__ to latest released version - Merge pull request #254 from gaby/packaging - Add packaging to requirements.txt - feat: support raise_for_status as callable Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
26 lines
845 B
BlitzBasic
26 lines
845 B
BlitzBasic
SUMMARY = "Mock out requests made by ClientSession from aiohttp package"
|
|
HOMEPAGE = "https://github.com/pnuckowski/aioresponses"
|
|
LICENSE = "MIT"
|
|
LIC_FILES_CHKSUM = "file://LICENSE;md5=b22b40d5974300051216633098387c57"
|
|
|
|
SRC_URI[sha256sum] = "66292f1d5c94a3cb984f3336d806446042adb17347d3089f2d3962dd6e5ba55a"
|
|
|
|
DEPENDS += "python3-pbr-native"
|
|
|
|
inherit setuptools3 pypi
|
|
|
|
RDEPENDS:${PN} += "python3-aiohttp \
|
|
python3-asyncio \
|
|
python3-core \
|
|
python3-json \
|
|
python3-math \
|
|
python3-multidict \
|
|
python3-netclient \
|
|
python3-packaging \
|
|
python3-unittest \
|
|
python3-yarl"
|
|
|
|
# optionally needs asynctest asynctest.case ddt but recipes do not exist for them
|
|
|
|
PYPI_PACKAGE = "aioresponses"
|