[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#56740] [PATCH 1/6] gnu: Add python-mkdocs-markdownextradata-plugin.
From: |
Hartmut Goebel |
Subject: |
[bug#56740] [PATCH 1/6] gnu: Add python-mkdocs-markdownextradata-plugin. |
Date: |
Sun, 24 Jul 2022 16:45:20 +0200 |
* gnu/packages/python-xyz.scm (python-mkdocs-markdownextradata-plugin): New
variable.
---
gnu/packages/python-xyz.scm | 26 ++++++++++++++++++++++++++
1 file changed, 26 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index ee733f85af..4cb7f6a801 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -690,6 +690,32 @@ project documentation. Documentation source files are
written in Markdown, and
configured with a single YAML configuration file.")
(license license:bsd-3)))
+(define-public python-mkdocs-markdownextradata-plugin
+ (package
+ (name "python-mkdocs-markdownextradata-plugin")
+ (version "0.2.5")
+ (source (origin
+ ;; Use git, as there are some test files missing from the PyPI release,
+ ;; see
https://github.com/rosscdh/mkdocs-markdownextradata-plugin/issues/41.
+ (method git-fetch)
+ (uri (git-reference
+ (url
"https://github.com/rosscdh/mkdocs-markdownextradata-plugin")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1a3868s9m7pzyfncpjbjsa9vw5nihssl2v47pxj7h6qa67kvlk3g"))))
+ (build-system python-build-system)
+ (native-inputs (list python-pytest))
+ (propagated-inputs (list python-mkdocs python-pyyaml))
+ (home-page "https://github.com/rosscdh/mkdocs-markdownextradata-plugin/")
+ (synopsis "Inject mkdocs.yml extra variables into the MkDocs markdown
+template")
+ (description
+ "This package provides a MkDocs plugin that injects the mkdocs.yml extra
+variables into the markdown template")
+ (license license:expat)))
+
(define-public python-pymdown-extensions
(package
(name "python-pymdown-extensions")
--
2.30.4
- [bug#56740] [PATCH 0/6] Some python modules, Hartmut Goebel, 2022/07/24
- [bug#56740] [PATCH 2/6] gnu: Add python-starlette., Hartmut Goebel, 2022/07/24
- [bug#56740] [PATCH 4/6] gnu: Add python-rcslice., Hartmut Goebel, 2022/07/24
- [bug#56740] [PATCH 3/6] gnu: Add python-cyclic., Hartmut Goebel, 2022/07/24
- [bug#56740] [PATCH 5/6] gnu: Add python-mdx-include., Hartmut Goebel, 2022/07/24
- [bug#56740] [PATCH 6/6] gnu: Add python-types-orjson., Hartmut Goebel, 2022/07/24
- [bug#56740] [PATCH 1/6] gnu: Add python-mkdocs-markdownextradata-plugin.,
Hartmut Goebel <=