2017-08-13 03:24:00 +02:00
|
|
|
from pythonforandroid.recipe import PythonRecipe
|
|
|
|
|
|
|
|
|
|
|
|
class ZeroconfRecipe(PythonRecipe):
|
|
|
|
name = 'zeroconf'
|
|
|
|
version = '0.17.4'
|
|
|
|
url = 'https://pypi.python.org/packages/source/z/zeroconf/zeroconf-{version}.tar.gz'
|
2019-03-30 21:58:45 +01:00
|
|
|
depends = ['setuptools', 'enum34', 'six']
|
|
|
|
call_hostpython_via_targetpython = False
|
2017-08-13 03:24:00 +02:00
|
|
|
|
|
|
|
|
|
|
|
recipe = ZeroconfRecipe()
|