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 PyGenshi(PythonPackage):
|
2016-05-10 17:48:18 +08:00
|
|
|
"""Python toolkit for generation of output for the web"""
|
|
|
|
homepage = "https://genshi.edgewall.org/"
|
|
|
|
url = "http://ftp.edgewall.com/pub/genshi/Genshi-0.7.tar.gz"
|
|
|
|
|
2019-10-11 13:44:41 +08:00
|
|
|
version('0.7', sha256='1d154402e68bc444a55bcac101f96cb4e59373100cc7a2da07fbf3e5cc5d7352')
|
|
|
|
version('0.6.1', sha256='fed947f11dbcb6792bb7161701ec3b9804055ad68c8af0ab4f0f9b25e9a18dbd')
|
|
|
|
version('0.6', sha256='32aaf76a03f88efa04143bf80700399e6d84eead818fdd19d763fd76af972a4b')
|
2016-05-10 17:48:18 +08:00
|
|
|
|
2016-03-09 23:46:56 +08:00
|
|
|
depends_on("py-setuptools", type='build')
|