We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fd4bbec + 8394ebd commit 0db8184Copy full SHA for 0db8184
pythonforandroid/recipes/aiohttp/__init__.py
@@ -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