lbry-android-sdk/p4a/pythonforandroidold/recipes/pyyaml/__init__.py
2022-12-02 15:15:34 -05:00

11 lines
265 B
Python

from pythonforandroid.recipe import PythonRecipe
class PyYamlRecipe(PythonRecipe):
version = "3.12"
url = 'http://pyyaml.org/download/pyyaml/PyYAML-{version}.tar.gz'
depends = ["setuptools"]
site_packages_name = 'pyyaml'
recipe = PyYamlRecipe()