diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-04-19 16:52:35 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2022-05-12 12:46:02 -0400 |
commit | c5078029031350bb22a91db8c3be7c08461d264a (patch) | |
tree | a93a9f2df695280de06b2241cc64a3024ecb5448 | |
parent | 03f26438e05d1c724417adb2e7481819c5bd5b75 (diff) |
gnu: Add python-mdx-gh-links.
* gnu/packages/python-xyz.scm (python-mdx-gh-links): New variable.
-rw-r--r-- | gnu/packages/python-xyz.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index a9ee1da742..4258b06600 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -706,6 +706,26 @@ configured with a single YAML configuration file.") Markdown. All extensions are found under the module namespace of pymdownx.") (license license:expat))) +(define-public python-mdx-gh-links + (package + (name "python-mdx-gh-links") + (version "0.2") + (source + (origin + (method url-fetch) + (uri (pypi-uri "mdx_gh_links" version)) + (sha256 + (base32 "167k1jbp3jifxbnlpi6wy0z1skam7gqv2sixb5bhggb2vypqvysr")))) + (build-system python-build-system) + (arguments (list #:tests? #f)) ;tests connect github + (propagated-inputs (list python-markdown)) + (home-page "https://github.com/Python-Markdown/github-links/") + (synopsis "Python-Markdown extension adding support for shorthand links") + (description "This package is an extension to Python-Markdown which adds +support for shorthand links to GitHub users, repositories, issues and +commits.") + (license license:bsd-3))) + (define-public python-mkdocs-material (package (name "python-mkdocs-material") |