Merge pull request #490 from AndreMiras/feature/netifaces_python_depends
Updates netifaces recipe, leverages `python_depends`
This commit is contained in:
commit
a2b5a763e0
1 changed files with 1 additions and 7 deletions
|
@ -6,16 +6,10 @@ from kivy_ios.toolchain import CythonRecipe, cd, shprint
|
||||||
|
|
||||||
|
|
||||||
class NetifacesRecipe(CythonRecipe):
|
class NetifacesRecipe(CythonRecipe):
|
||||||
"""
|
|
||||||
Also requires `setuptools to be installed on target (for pkg_resources):
|
|
||||||
```sh
|
|
||||||
python toolchain.py pip install setuptools
|
|
||||||
```
|
|
||||||
"""
|
|
||||||
|
|
||||||
version = "0.10.9"
|
version = "0.10.9"
|
||||||
url = "https://pypi.io/packages/source/n/netifaces/netifaces-{version}.tar.gz"
|
url = "https://pypi.io/packages/source/n/netifaces/netifaces-{version}.tar.gz"
|
||||||
depends = ["python3", "host_setuptools3"]
|
depends = ["python3", "host_setuptools3"]
|
||||||
|
python_depends = ["setuptools"]
|
||||||
library = "libnetifaces.a"
|
library = "libnetifaces.a"
|
||||||
cythonize = False
|
cythonize = False
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue