diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-12-18 23:07:40 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-12-18 23:07:40 +0100 |
commit | 7ba6d70e4528201151195e1ed2175ee4828bdb2f (patch) | |
tree | 3a95b7f107763f959c31187d394d3fabbf1501c5 /gnu/packages/sphinx.scm | |
parent | 94c7f70faa0ba0409099b423df6534718d7518cc (diff) | |
parent | 6afea7489b76c8db58d4f389fdbedc7c2b8992bd (diff) |
Merge branch 'master' into staging
Diffstat (limited to 'gnu/packages/sphinx.scm')
-rw-r--r-- | gnu/packages/sphinx.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/sphinx.scm b/gnu/packages/sphinx.scm index 8075406c99..35d8a72492 100644 --- a/gnu/packages/sphinx.scm +++ b/gnu/packages/sphinx.scm @@ -11,6 +11,7 @@ ;;; Copyright © 2017 Julien Lepiller <julien@lepiller.eu> ;;; Copyright © 2019 Efraim Flashner <efraim@flashner.co.il> ;;; Copyright © 2019 Nicolas Goaziou <mail@nicolasgoaziou.fr> +;;; Copyright © 2019 Alexandros Theodotou <alex@zrythm.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -565,3 +566,26 @@ and several other projects.") (description "This package is an extension to reStructuredText and Sphinx to be able to read and render the Doxygen xml output.") (license license:bsd-3))) + +(define-public python-sphinx-intl + (package + (name "python-sphinx-intl") + (version "2.0.0") + (source + (origin + (method url-fetch) + (uri (pypi-uri "sphinx-intl" version)) + (sha256 + (base32 + "0zbf1bh23b3kza8bnjykmv2k21xmmr4gamhi3lnicnr6ypnrphr5")))) + (build-system python-build-system) + (propagated-inputs + `(("python-sphinx" ,python-sphinx) + ("python-click" ,python-click))) + (home-page "https://github.com/sphinx-doc/sphinx-intl") + (synopsis + "Sphinx utility that makes it easy to translate and to apply translation") + (description + "A utility tool that provides several features that make it easy to +translate and to apply translation to Sphinx generated document.") + (license license:bsd-2))) |