spack/var/spack/repos/builtin/packages/py-mistune/package.py

23 lines
755 B
Python
Raw Normal View History

# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
from spack import *
2016-05-10 19:17:36 +08:00
class PyMistune(PythonPackage):
"""
Python markdown parser
"""
homepage = "http://mistune.readthedocs.org/en/latest/"
url = "https://github.com/lepture/mistune/archive/v0.7.1.tar.gz"
version('0.7.1', '0d9c29700c670790c5b2471070d32ec2')
2016-05-10 19:17:36 +08:00
version('0.7', '77750ae8b8d0d584894224a7e0c0523a')
version('0.6', 'd4f3d4f28a69e715f82b591d5dacf9a6')
version('0.5.1', '1c6cfce28a4aa90cf125217cd6c6fe6c')
2016-05-10 19:17:36 +08:00
version('0.5', '997736554f1f95eea78c66ae339b5722')
2016-03-09 23:46:56 +08:00
depends_on('py-setuptools', type='build')