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)
|
|
|
|
|
2016-03-27 23:06:10 +08:00
|
|
|
from spack import *
|
|
|
|
|
2016-08-10 16:50:00 +08:00
|
|
|
|
2017-03-30 00:13:23 +08:00
|
|
|
class PyHtml2text(PythonPackage):
|
|
|
|
"""Turn HTML into equivalent Markdown-structured text."""
|
2016-03-27 23:06:10 +08:00
|
|
|
|
2017-03-30 00:13:23 +08:00
|
|
|
homepage = "https://github.com/Alir3z4/html2text/"
|
|
|
|
url = "https://pypi.io/packages/source/h/html2text/html2text-2016.9.19.tar.gz"
|
2016-03-27 23:06:10 +08:00
|
|
|
|
2017-03-30 00:13:23 +08:00
|
|
|
version('2016.9.19', 'd6b07e32ed21f186496f012691e02dd5')
|
|
|
|
|
|
|
|
depends_on('py-setuptools', type='build')
|