Add a few more python packages

py-Genshi
py-astroid
py-jinja2
py-logilab-common
py-markupsafe
py-mistune
py-prettytable
py-py2neo
py-storm
This commit is contained in:
Benedikt Hegner
2016-05-10 11:48:18 +02:00
parent 42edb6840e
commit aca5941a0e
9 changed files with 175 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
from spack import *
class PyStorm(Package):
"""Storm is an object-relational mapper (ORM) for Python"""
homepage = "https://storm.canonical.com/"
url = "https://launchpad.net/storm/trunk/0.20/+download/storm-0.20.tar.gz"
version('0.20', '8628503141f0f06c0749d607ac09b9c7')
extends('python')
depends_on('py-setuptools')
def install(self, spec, prefix):
python('setup.py', 'install', '--prefix=%s' % prefix)