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

20 lines
425 B
Python
Raw Permalink Normal View History

2017-08-13 03:24:00 +02:00
from pythonforandroid.recipe import CompiledComponentsPythonRecipe
class NetifacesRecipe(CompiledComponentsPythonRecipe):
version = '0.10.9'
2017-08-13 03:24:00 +02:00
url = 'https://files.pythonhosted.org/packages/source/n/netifaces/netifaces-{version}.tar.gz'
2017-08-13 03:24:00 +02:00
depends = ['setuptools']
patches = ['fix-build.patch']
2017-08-13 03:24:00 +02:00
site_packages_name = 'netifaces'
call_hostpython_via_targetpython = False
recipe = NetifacesRecipe()