Added Python Twisted library
This commit is contained in:
parent
14b30de407
commit
666d9e88f5
1 changed files with 16 additions and 0 deletions
16
var/spack/packages/py-twisted/package.py
Normal file
16
var/spack/packages/py-twisted/package.py
Normal file
|
@ -0,0 +1,16 @@
|
|||
from spack import *
|
||||
|
||||
class PyTwisted(Package):
|
||||
"""An asynchronous networking framework written in Python"""
|
||||
homepage = "https://twistedmatrix.com/"
|
||||
url = "https://pypi.python.org/packages/source/T/Twisted/Twisted-15.3.0.tar.bz2"
|
||||
|
||||
version('15.4.0', '5337ffb6aeeff3790981a2cd56db9655')
|
||||
version('15.3.0', 'b58e83da2f00b3352afad74d0c5c4599')
|
||||
|
||||
depends_on('py-setuptools')
|
||||
|
||||
extends('python')
|
||||
|
||||
def install(self, spec, prefix):
|
||||
python('setup.py', 'install', '--prefix=%s' % prefix)
|
Loading…
Reference in a new issue