15 lines
313 B
Python
15 lines
313 B
Python
|
from pythonforandroid.recipe import PythonRecipe
|
||
|
|
||
|
|
||
|
class IpaddressRecipe(PythonRecipe):
|
||
|
name = 'ipaddress'
|
||
|
version = '1.0.16'
|
||
|
url = 'https://pypi.python.org/packages/source/i/ipaddress/ipaddress-{version}.tar.gz'
|
||
|
|
||
|
depends = ['python2']
|
||
|
|
||
|
call_hostpython_via_targetpython = False
|
||
|
|
||
|
|
||
|
recipe = IpaddressRecipe()
|