summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorRyan Marcellino <67644978+myan-rarcellino-nnl@users.noreply.github.com>2022-08-23 01:44:39 -0400
committerGitHub <noreply@github.com>2022-08-23 00:44:39 -0500
commit3e3e387a45c03299156d8a197d66f867c33ca59f (patch)
tree8158e111fe36e1ad067178ffd4b37e5a7f10cb89 /var
parent04339fbe9a3f77c7b744a19d9b3174ddbfae038b (diff)
downloadspack-3e3e387a45c03299156d8a197d66f867c33ca59f.tar.gz
spack-3e3e387a45c03299156d8a197d66f867c33ca59f.tar.bz2
spack-3e3e387a45c03299156d8a197d66f867c33ca59f.tar.xz
spack-3e3e387a45c03299156d8a197d66f867c33ca59f.zip
New package: py-pymdown-extensions (#32324)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-pymdown-extensions/package.py20
1 files changed, 20 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-pymdown-extensions/package.py b/var/spack/repos/builtin/packages/py-pymdown-extensions/package.py
new file mode 100644
index 0000000000..706c58ce55
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-pymdown-extensions/package.py
@@ -0,0 +1,20 @@
+# Copyright 2013-2022 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.package import *
+
+
+class PyPymdownExtensions(PythonPackage):
+ """Extensions for Python Markdown."""
+
+ homepage = "https://github.com/facelessuser/pymdown-extensions"
+ pypi = "pymdown_extensions/pymdown_extensions-9.5.tar.gz"
+
+ version("9.5", sha256="3ef2d998c0d5fa7eb09291926d90d69391283561cf6306f85cd588a5eb5befa0")
+
+ depends_on("python@3.7:", type=("build", "run"))
+ depends_on("py-hatchling@0.21.1:", type="build")
+ depends_on("py-markdown@3.2:", type=("build", "run"))