guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#30055] [PATCH] gnu: pelican: Enable Markdown support.


From: Ben Sturmfels
Subject: [bug#30055] [PATCH] gnu: pelican: Enable Markdown support.
Date: Wed, 10 Jan 2018 14:08:25 +1100
User-agent: mu4e 0.9.18; emacs 25.3.1

Hi Folks,

I just tried to build my Pelican blog on GuixSD and found that it didn't
process the Markdown input files. After adding the python-markdown
dependency, Pelican processes the Markdown files successfully. Patch
attached.

Regards,
Ben

>From bf975bb381b4f441323f15f2522230353e3b435b Mon Sep 17 00:00:00 2001
From: Ben Sturmfels <address@hidden>
Date: Wed, 10 Jan 2018 12:23:08 +1100
Subject: [PATCH] gnu: pelican: Enable Markdown support.

* gnu/packages/python.scm (pelican)[propagated-inputs]: Require
   python-markdown to provide Markdown feature from package description.
---
 gnu/packages/python.scm | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 29fa2809a..9d13a10c8 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -2472,7 +2472,8 @@ interested parties to subscribe to events, or 
\"signals\".")
        ("python-blinker" ,python-blinker)
        ("python-unidecode" ,python-unidecode)
        ("python-six" ,python-six)
-       ("python-dateutil" ,python-dateutil)))
+       ("python-dateutil" ,python-dateutil)
+       ("python-markdown" ,python-markdown)))
     (home-page "http://getpelican.com/";)
     (arguments
      `(;; XXX Requires a lot more packages to do unit tests :P
-- 
2.15.1


reply via email to

[Prev in Thread] Current Thread [Next in Thread]