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

class PyNose(Package):
    """nose extends the test loading and running features of unittest,
    making it easier to write, find and run tests."""

    homepage = "https://pypi.python.org/pypi/nose"
    url      = "https://pypi.python.org/packages/source/n/nose/nose-1.3.4.tar.gz"

    version('1.3.4', '6ed7169887580ddc9a8e16048d38274d')
    version('1.3.6', '0ca546d81ca8309080fc80cb389e7a16')

    extends('python', ignore=r'bin/nosetests.*$')
    depends_on('py-setuptools')

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