Skip to content

Commit 8394ebd

Browse files
committed
1 parent 690dd18 commit 8394ebd

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
"""Build AIOHTTP"""
2+
from typing import List
3+
from pythonforandroid.recipe import CythonRecipe # type: ignore
4+
5+
6+
class AIOHTTPRecipe(CythonRecipe): # type: ignore # pylint: disable=R0903
7+
"""Build AIOHTTP"""
8+
9+
version = "v3.6.2"
10+
url = "https://github.com/aio-libs/aiohttp/archive/{version}.zip"
11+
name = "aiohttp"
12+
13+
depends: List[str] = ["setuptools"]
14+
15+
16+
recipe = AIOHTTPRecipe()

0 commit comments

Comments
 (0)