lbry-android-sdk/p4a/pythonforandroidold/recipes/pyyaml/__init__.py

12 lines
265 B
Python
Raw Normal View History

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