[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/11: gnu: Add python-mkdocs.
From: |
guix-commits |
Subject: |
07/11: gnu: Add python-mkdocs. |
Date: |
Sun, 2 May 2021 09:06:41 -0400 (EDT) |
raghavgururajan pushed a commit to branch master
in repository guix.
commit ad8ee53cb17b8d4cb1ff85f8feae62ab1c0f36ab
Author: Raghav Gururajan <rg@raghavgururajan.name>
AuthorDate: Wed Apr 28 15:43:00 2021 -0400
gnu: Add python-mkdocs.
* gnu/packages/python-xyz.scm (python-mkdocs): New variable.
---
gnu/packages/python-xyz.scm | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ec45958..d076fa1 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -290,6 +290,42 @@ It indexes documents and provides a search interface for
retrieving documents
that best match text queries.")
(license license:expat)))
+(define-public python-mkdocs
+ (package
+ (name "python-mkdocs")
+ (version "1.1.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri
+ (pypi-uri "mkdocs" version))
+ (sha256
+ (base32 "0fgv5zawpyyv0vd4j5y8m4h058lh9jkwfcm0xy4pg7dr09a1xdph"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:phases
+ (modify-phases %standard-phases
+ ;; Requirements refer to a specific version of dependencies,
+ ;; which are too old. So we patch to refer to any later version.
+ (add-after 'unpack 'patch-requirements
+ (lambda _
+ (substitute* "setup.py"
+ (("==") ">=")))))))
+ (propagated-inputs
+ `(("python-click" ,python-click)
+ ("python-jinja2" ,python-jinja2)
+ ("python-livereload" ,python-livereload)
+ ("python-lunr" ,python-lunr)
+ ("python-markdown" ,python-markdown)
+ ("python-pyyaml" ,python-pyyaml)
+ ("python-tornado" ,python-tornado)))
+ (home-page "https://www.mkdocs.org")
+ (synopsis "Project documentation with Markdown")
+ (description "MkDocs is a static site generator geared towards building
+project documentation. Documentation source files are written in Markdown, and
+configured with a single YAML configuration file.")
+ (license license:bsd-3)))
+
(define-public python-slixmpp
(package
(name "python-slixmpp")
- branch master updated (c113191 -> 061823d), guix-commits, 2021/05/02
- 02/11: gnu: Add python-yaspin., guix-commits, 2021/05/02
- 01/11: gnu: Add python-colorful., guix-commits, 2021/05/02
- 03/11: gnu: Add python-pytest-click., guix-commits, 2021/05/02
- 04/11: gnu: python-nltk: Update to 3.6.2., guix-commits, 2021/05/02
- 05/11: gnu: Add python-nltk@3.4., guix-commits, 2021/05/02
- 11/11: gnu: gupnp: Add gsettings-desktop-schemas for tests., guix-commits, 2021/05/02
- 06/11: gnu: Add python-lunr., guix-commits, 2021/05/02
- 07/11: gnu: Add python-mkdocs.,
guix-commits <=
- 08/11: gnu: Add python-pymdown-extensions., guix-commits, 2021/05/02
- 10/11: gnu: Add tgcli., guix-commits, 2021/05/02
- 09/11: gnu: Add python-mkdocs-material., guix-commits, 2021/05/02