
- This moves var/spack/packages to var/spack/repos/builtin/packages. - Packages that did not exist in the source branch, or were changed in develop, were moved into var/spack/repos/builtin/packages as part of the integration. Conflicts: lib/spack/spack/test/unit_install.py var/spack/repos/builtin/packages/clang/package.py
17 lines
424 B
Python
17 lines
424 B
Python
from spack import *
|
|
|
|
class PyUrwid(Package):
|
|
"""A full-featured console UI library"""
|
|
homepage = "http://urwid.org/"
|
|
url = "https://pypi.python.org/packages/source/u/urwid/urwid-1.3.0.tar.gz"
|
|
|
|
version('1.3.0', 'a989acd54f4ff1a554add464803a9175')
|
|
|
|
depends_on('py-setuptools')
|
|
|
|
extends("python")
|
|
|
|
def install(self, spec, prefix):
|
|
python('setup.py', 'install', '--prefix=%s' % prefix)
|
|
|