11 lines
266 B
Python
11 lines
266 B
Python
from pythonforandroid.recipe import PythonRecipe
|
|
|
|
|
|
class IpaddressRecipe(PythonRecipe):
|
|
name = 'ipaddress'
|
|
version = '1.0.22'
|
|
url = 'https://github.com/phihag/ipaddress/archive/v{version}.tar.gz'
|
|
depends = ['setuptools']
|
|
|
|
|
|
recipe = IpaddressRecipe()
|