summaryrefslogtreecommitdiff
path: root/var
diff options
context:
space:
mode:
authorClaire Guilbaud <34576189+Bidibulke@users.noreply.github.com>2020-07-27 15:02:56 +0200
committerGitHub <noreply@github.com>2020-07-27 15:02:56 +0200
commitbbfc9fd448085339c787c12e02805c64a01f68cd (patch)
tree0d4ed500430a89df2840694896266b1e7292c668 /var
parente960e016afc7f7b78b7c7e7ab7cbb271477bdfbc (diff)
downloadspack-bbfc9fd448085339c787c12e02805c64a01f68cd.tar.gz
spack-bbfc9fd448085339c787c12e02805c64a01f68cd.tar.bz2
spack-bbfc9fd448085339c787c12e02805c64a01f68cd.tar.xz
spack-bbfc9fd448085339c787c12e02805c64a01f68cd.zip
commonmark: new package at v0.9.0 (#17624)
Diffstat (limited to 'var')
-rw-r--r--var/spack/repos/builtin/packages/py-commonmark/package.py19
1 files changed, 19 insertions, 0 deletions
diff --git a/var/spack/repos/builtin/packages/py-commonmark/package.py b/var/spack/repos/builtin/packages/py-commonmark/package.py
new file mode 100644
index 0000000000..0d0e31bc68
--- /dev/null
+++ b/var/spack/repos/builtin/packages/py-commonmark/package.py
@@ -0,0 +1,19 @@
+# Copyright 2013-2020 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 PyCommonmark(PythonPackage):
+ """commonmark.py is a pure Python port of jgm's commonmark.js, a Markdown
+ parser and renderer for the CommonMark specification, using only native
+ modules."""
+
+ homepage = "https://github.com/readthedocs/commonmark.py"
+ url = "https://pypi.io/packages/source/c/commonmark/commonmark-0.9.0.tar.gz"
+
+ version('0.9.0', sha256='867fc5db078ede373ab811e16b6789e9d033b15ccd7296f370ca52d1ee792ce0')
+
+ depends_on('py-future')