2016-10-14 14:07:10 +02:00
|
|
|
from toolchain import CythonRecipe
|
2016-10-13 11:20:55 +02:00
|
|
|
|
2016-10-14 14:07:10 +02:00
|
|
|
|
|
|
|
class TwistedRecipe(CythonRecipe):
|
|
|
|
name = "twisted"
|
2016-10-13 11:20:55 +02:00
|
|
|
version = "16.1.1"
|
|
|
|
url = "https://github.com/twisted/twisted/archive/twisted-{version}.zip"
|
2016-10-14 14:07:10 +02:00
|
|
|
depends = ["pyopenssl", "zope_interface"]
|
|
|
|
cythonize = False
|
2016-10-13 11:20:55 +02:00
|
|
|
|
|
|
|
|
|
|
|
recipe = TwistedRecipe()
|