2017-10-03 11:16:24 +02:00
|
|
|
from pythonforandroid.recipe import PythonRecipe
|
|
|
|
|
|
|
|
|
|
|
|
class IpaddressRecipe(PythonRecipe):
|
2018-10-07 16:59:03 +02:00
|
|
|
name = 'ipaddress'
|
|
|
|
version = '1.0.16'
|
|
|
|
url = 'https://pypi.python.org/packages/source/i/ipaddress/ipaddress-{version}.tar.gz'
|
2017-10-03 11:16:24 +02:00
|
|
|
|
2018-10-07 16:59:03 +02:00
|
|
|
depends = [('python2', 'python3crystax')]
|
2017-10-03 11:16:24 +02:00
|
|
|
|
|
|
|
|
2018-10-07 16:59:03 +02:00
|
|
|
recipe = IpaddressRecipe()
|