2016-10-14 13:04:01 +02:00
|
|
|
from toolchain import CythonRecipe
|
2016-10-13 11:20:55 +02:00
|
|
|
|
2016-10-14 12:39:39 +02:00
|
|
|
|
|
|
|
class ZopeInterfaceRecipe(CythonRecipe):
|
2016-10-14 13:04:01 +02:00
|
|
|
name = "zope"
|
2016-10-13 11:20:55 +02:00
|
|
|
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
|
|
|
|
2016-10-13 11:20:55 +02:00
|
|
|
|
|
|
|
recipe = ZopeInterfaceRecipe()
|