Skip to content
Snippets Groups Projects
Commit a9e9f9af authored by Gregory Becker's avatar Gregory Becker
Browse files

Revert "removed package for python packages with problematic / duplicate names"

This reverts commit f3254ff0.
parent 1b0d0647
Branches
Tags
No related merge requests found
from spack import *
class PyCython(Package):
"""The Cython compiler for writing C extensions for the Python language."""
homepage = "http://www.cython.org"
version("0.21.2", "d21adb870c75680dc857cd05d41046a4",
url="https://pypi.python.org/packages/source/C/Cython/Cython-0.21.2.tar.gz")
extends("python")
def install(self, spec, prefix):
python("setup.py", "install", "--prefix=%s" % prefix)
from spack import *
class PyDistutils2(Package):
"""Python Packaging Library."""
homepage = "https://hg.python.org/distutils2"
url = "https://pypi.python.org/packages/source/D/Distutils2/Distutils2-1.0a4.tar.gz"
version('1.0a4', '52bc9dffb394970c27e02853ae3a3241')
depends_on("python")
def install(self, spec, prefix):
python('setup.py', 'install', '--prefix=%s' % prefix)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment