blob: 1909a2da11eeee9c96f5a8bdc90fdb080f5322b1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# Copyright 2013-2018 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 *
class PyPygments(PythonPackage):
"""Pygments is a syntax highlighting package written in Python."""
homepage = "http://pygments.org/"
url = "https://pypi.io/packages/source/P/Pygments/Pygments-2.2.0.tar.gz"
import_modules = [
'pygments', 'pygments.filters', 'pygments.formatters',
'pygments.lexers', 'pygments.styles'
]
version('2.2.0', '13037baca42f16917cbd5ad2fab50844')
version('2.1.3', 'ed3fba2467c8afcda4d317e4ef2c6150')
version('2.0.1', 'e0daf4c14a4fe5b630da765904de4d6c')
version('2.0.2', '238587a1370d62405edabd0794b3ec4a')
depends_on('py-setuptools', type='build')
|