kivy-ios/recipes/zope_interface/__init__.py

14 lines
318 B
Python
Raw Normal View History

2016-10-14 13:04:01 +02:00
from toolchain import CythonRecipe
2016-10-14 12:39:39 +02:00
class ZopeInterfaceRecipe(CythonRecipe):
2016-10-14 13:04:01 +02:00
name = "zope"
version = "4.3.2"
2016-11-02 17:43:23 +01:00
url = 'http://pypi.python.org/packages/source/z/zope.interface/zope.interface-{version}.tar.gz'
2016-10-14 09:57:34 +02:00
depends = ["python", "host_setuptools"]
2016-10-14 12:39:39 +02:00
cythonize = False
2016-10-13 16:07:58 +02:00
recipe = ZopeInterfaceRecipe()
2016-11-02 17:43:23 +01:00