guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 5e057b861e20716f81ff46dc2324201f12c81541
Author: Cayetano Santos <[email protected]>
AuthorDate: Wed Feb 4 10:38:16 2026 +0100

    gnu: Add python-sphinxcontrib-bibtex.
    
    * gnu/packages/sphinx.scm (python-sphinxcontrib-bibtex): New variable.
    
    Change-Id: I5687e297a02f0e92ecaac7886b2c29f8b9e09309
---
 gnu/packages/sphinx.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm
index 49f5c3d4ff..0c1a1cbaad 100644
--- a/gnu/packages/sphinx.scm
+++ b/gnu/packages/sphinx.scm
@@ -320,6 +320,28 @@ sources.")
 Apple help books.")
     (license license:bsd-2)))
 
+(define-public python-sphinxcontrib-bibtex
+  (package
+    (name "python-sphinxcontrib-bibtex")
+    (version "2.6.5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/mcmtroffaes/sphinxcontrib-bibtex/";)
+              (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1shs4gk5cm6s44c2aw2ih87fa725ynyp8iahf3vwc98z887bfgdi"))))
+    (build-system pyproject-build-system)
+    (native-inputs (list python-pytest python-setuptools))
+    (propagated-inputs (list python-pybtex-docutils python-sphinx-autoapi))
+    (home-page "https://github.com/mcmtroffaes/sphinxcontrib-bibtex/";)
+    (synopsis "Sphinx extension for bibtex style references")
+    (description "This package allows bibtex citations to be inserted into
+documentation generated by sphinx, via a bibliography directive.")
+    (license license:bsd-2)))
+
 (define-public python-sphinx-basic-ng
   (package
     (name "python-sphinx-basic-ng")

Reply via email to