kivy-ios/recipes/zope_interface/__init__.py

13 lines
300 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-10-14 12:39:39 +02:00
url = "https://github.com/zopefoundation/zope.interface/archive/{version}.zip"
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()