lbry-android-sdk/p4a/pythonforandroid/recipes/zeroconf/__init__.py

13 lines
364 B
Python
Raw Normal View History

2017-08-13 03:24:00 +02:00
from pythonforandroid.recipe import PythonRecipe
class ZeroconfRecipe(PythonRecipe):
name = 'zeroconf'
2022-12-02 21:15:34 +01:00
version = '0.24.5'
2017-08-13 03:24:00 +02:00
url = 'https://pypi.python.org/packages/source/z/zeroconf/zeroconf-{version}.tar.gz'
2022-12-02 21:15:34 +01:00
depends = ['setuptools', 'ifaddr', 'typing;python_version<"3.5"']
call_hostpython_via_targetpython = False
2017-08-13 03:24:00 +02:00
recipe = ZeroconfRecipe()