guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 13b8e0300212fe7c3d653c915f3e9756a92b3db3
Author: Cayetano Santos <[email protected]>
AuthorDate: Wed Feb 4 10:26:49 2026 +0100
gnu: Add python-pybtex-docutils.
* gnu/packages/python-xyz.scm (python-pybtex-docutils): New variable.
Change-Id: Ia4fc53bedf772c09a164d7ac8f00d7df782587f5
---
gnu/packages/python-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 10beed9c14..0e7e9ae596 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -26883,6 +26883,28 @@ You can simply type pybtex instead of bibtex.")
"This package provides support for the APA style within pybtex.")
(license license:expat)))
+(define-public python-pybtex-docutils
+ (package
+ (name "python-pybtex-docutils")
+ (version "1.0.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/mcmtroffaes/pybtex-docutils")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0s21ik0ql7qi3cf6v5fdmlwbzidwdqpsswwsh1vihhz066n2ycps"))))
+ (build-system pyproject-build-system)
+ (propagated-inputs (list python-docutils python-pybtex))
+ (native-inputs (list python-setuptools python-pytest))
+ (home-page "https://github.com/mcmtroffaes/pybtex-docutils")
+ (synopsis "Docutils backend for pybtex")
+ (description "The pybtex docutils backend allows bibtex citations to be
+inserted into documentation generated by docutils.")
+ (license license:expat)))
+
(define-public python-onetimepass
(package
(name "python-onetimepass")