2019-01-01 14:04:23 +08:00
|
|
|
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
|
2018-10-08 04:52:23 +08:00
|
|
|
# Spack Project Developers. See the top-level COPYRIGHT file for details.
|
2016-05-12 12:22:25 +08:00
|
|
|
#
|
2018-10-08 04:52:23 +08:00
|
|
|
# SPDX-License-Identifier: (Apache-2.0 OR MIT)
|
|
|
|
|
2017-01-17 10:13:37 +08:00
|
|
|
from spack import *
|
2016-05-10 19:17:36 +08:00
|
|
|
|
2016-05-10 17:48:18 +08:00
|
|
|
|
2017-01-17 10:13:37 +08:00
|
|
|
class PyMistune(PythonPackage):
|
2016-05-10 17:48:18 +08:00
|
|
|
"""
|
|
|
|
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')
|
2016-05-10 17:48:18 +08:00
|
|
|
version('0.5.1', '1c6cfce28a4aa90cf125217cd6c6fe6c')
|
2016-05-10 19:17:36 +08:00
|
|
|
version('0.5', '997736554f1f95eea78c66ae339b5722')
|
2016-05-10 17:48:18 +08:00
|
|
|
|
2016-03-09 23:46:56 +08:00
|
|
|
depends_on('py-setuptools', type='build')
|