2016-10-14 14:07:10 +02:00
|
|
|
from toolchain import PythonRecipe
|
|
|
|
|
2016-10-13 11:20:55 +02:00
|
|
|
|
|
|
|
class AutobahnRecipe(PythonRecipe):
|
2016-10-14 14:07:10 +02:00
|
|
|
name = "autobahn"
|
2016-10-13 11:20:55 +02:00
|
|
|
version = "0.16.0"
|
|
|
|
url = "https://github.com/crossbario/autobahn-python/archive/v{version}.zip"
|
2016-10-14 14:07:10 +02:00
|
|
|
depends = ["twisted", "six", "txaio"]
|
2016-10-13 11:20:55 +02:00
|
|
|
|
|
|
|
recipe = AutobahnRecipe()
|