added py-wheel package

This commit is contained in:
Gregory L. Lee 2016-01-28 10:42:46 -08:00
parent c2bb00ca2f
commit 0e52c30bb8

View file

@ -0,0 +1,15 @@
from spack import *
class PyWheel(Package):
"""A built-package format for Python."""
homepage = "https://pypi.python.org/pypi/wheel"
url = "https://pypi.python.org/packages/source/w/wheel/wheel-0.26.0.tar.gz"
version('0.26.0', '4cfc6e7e3dc7377d0164914623922a10')
extends('python')
depends_on('py-setuptools')
def install(self, spec, prefix):
python('setup.py', 'install', '--prefix=%s' % prefix)