From 2a06bec1dbd053536acca650916c085ba755c199 Mon Sep 17 00:00:00 2001 From: Andre Miras Date: Sat, 9 May 2020 15:38:07 +0200 Subject: [PATCH] :sparkles: Updates netifaces recipe, leverages `python_depends` - Uses the `python_depends` feature introduced in #455 --- kivy_ios/recipes/netifaces/__init__.py | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/kivy_ios/recipes/netifaces/__init__.py b/kivy_ios/recipes/netifaces/__init__.py index d022e68..0209861 100644 --- a/kivy_ios/recipes/netifaces/__init__.py +++ b/kivy_ios/recipes/netifaces/__init__.py @@ -6,16 +6,10 @@ from kivy_ios.toolchain import CythonRecipe, cd, shprint 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" url = "https://pypi.io/packages/source/n/netifaces/netifaces-{version}.tar.gz" depends = ["python3", "host_setuptools3"] + python_depends = ["setuptools"] library = "libnetifaces.a" cythonize = False