[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add python-mrkd.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add python-mrkd. |
Date: |
Wed, 01 Dec 2021 10:41:28 -0500 |
This is an automated email from the git hooks/post-receive script.
ngz pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new 5ca0042 gnu: Add python-mrkd.
5ca0042 is described below
commit 5ca0042116c05f5d0c3c34211d64cef61bd9c8ff
Author: ZmnSCPxj via Guix-patches via <guix-patches@gnu.org>
AuthorDate: Wed Dec 1 05:50:24 2021 +0000
gnu: Add python-mrkd.
* gnu/packages/python-xyz.scm (python-mrkd): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/python-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index fa6a1e3..7b70c97 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -111,6 +111,7 @@
;;; Copyright © 2021 Felix Gruber <felgru@posteo.net>
;;; Copyright © 2021 Sébastien Lerique <sl@eauchat.org>
;;; Copyright © 2021 Raphaël Mélotte <raphael.melotte@mind.be>
+;;; Copyright © 2021 ZmnSCPxj <ZmnSCPxj@protonmail.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -535,6 +536,28 @@ It indexes documents and provides a search interface for
retrieving documents
that best match text queries.")
(license license:expat)))
+(define-public python-mrkd
+ (package
+ (name "python-mrkd")
+ (version "0.2.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "mrkd" version))
+ (sha256
+ (base32 "1bvaqbna1ihb4y2mv9pmvqcq3r9j6lwbbii99dani8lxx4dqqvs5"))))
+ (build-system python-build-system)
+ (propagated-inputs
+ `(("python-jinja2" ,python-jinja2)
+ ("python-mistune" ,python-mistune)
+ ("python-pygments" ,python-pygments)))
+ (home-page "https://pypi.org/project/mrkd/")
+ (synopsis "Python Markdown implementation")
+ (description
+ "@code{mrkd} writes man pages using Markdown, and convert them to Roff or
+HTML")
+ (license license:bsd-3)))
+
(define-public python-mkdocs
(package
(name "python-mkdocs")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add python-mrkd.,
guix-commits <=