summaryrefslogtreecommitdiff
path: root/var/spack/repos/builtin/packages/py-SQLAlchemy/package.py
blob: 9aecc95c63a85c27bcb1b5c9fb03155e9811573d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
from spack import *

class PySqlalchemy(Package):
    """The Python SQL Toolkit and Object Relational Mapper"""

    homepage = 'http://www.sqlalchemy.org/'
    url      = "https://pypi.python.org/packages/source/S/SQLAlchemy/SQLAlchemy-1.0.12.tar.gz"

    version('1.0.12', '6d19ef29883bbebdcac6613cf391cac4')

    extends('python')

    def install(self, spec, prefix):
        python('setup.py', 'install', '--prefix=%s' % prefix)