We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19e1e27 commit 505c3dfCopy full SHA for 505c3df
1 file changed
pythonforandroid/recipes/pydantic/__init__.py
@@ -0,0 +1,12 @@
1
+from pythonforandroid.recipe import PythonRecipe
2
+
3
4
+class PydanticRecipe(PythonRecipe):
5
+ version = '1.8.2'
6
+ url = 'https://github.com/samuelcolvin/pydantic/archive/refs/tags/v{version}.zip'
7
+ depends = ['setuptools']
8
+ python_depends = ['Cython', 'devtools', 'email-validator', 'dataclasses', 'typing-extensions', 'python-dotenv']
9
+ call_hostpython_via_targetpython = False
10
11
12
+recipe = PydanticRecipe()
0 commit comments