mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: Add python-sphinxcontrib-svg2pdfconverter.
* gnu/packages/python-xyz.scm (python-sphinxcontrib-svg2pdfconverter): New variable.
This commit is contained in:
parent
5a6e04c53c
commit
412342d1ef
1 changed files with 20 additions and 1 deletions
|
@ -51,7 +51,7 @@
|
||||||
;;; Copyright © 2018 Mathieu Lirzin <mthl@gnu.org>
|
;;; Copyright © 2018 Mathieu Lirzin <mthl@gnu.org>
|
||||||
;;; Copyright © 2018 Adam Massmann <massmannak@gmail.com>
|
;;; Copyright © 2018 Adam Massmann <massmannak@gmail.com>
|
||||||
;;; Copyright © 2016, 2018 Tomáš Čech <sleep_walker@gnu.org>
|
;;; Copyright © 2016, 2018 Tomáš Čech <sleep_walker@gnu.org>
|
||||||
;;; Copyright © 2018 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2018, 2019 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
|
;;; Copyright © 2018 Oleg Pykhalov <go.wigust@gmail.com>
|
||||||
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
|
;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
|
||||||
;;; Copyright © 2018, 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2018, 2019 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
|
@ -15300,3 +15300,22 @@ (define-public python-annoy
|
||||||
file-based data structures that are @code{mmap}ped into memory so that many
|
file-based data structures that are @code{mmap}ped into memory so that many
|
||||||
processes may share the same data.")
|
processes may share the same data.")
|
||||||
(license license:asl2.0)))
|
(license license:asl2.0)))
|
||||||
|
|
||||||
|
(define-public python-sphinxcontrib-svg2pdfconverter
|
||||||
|
(package
|
||||||
|
(name "python-sphinxcontrib-svg2pdfconverter")
|
||||||
|
(version "0.1.0")
|
||||||
|
(source (origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "sphinxcontrib-svg2pdfconverter" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1abvbgkkii13q8nsb10r0gc5lm0p9iq1iwhfhakn5ifn6asa0183"))))
|
||||||
|
(build-system python-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("python-sphinx" ,python-sphinx)))
|
||||||
|
(home-page "https://github.com/missinglinkelectronics/sphinxcontrib-svg2pdfconverter/releases")
|
||||||
|
(synopsis "Sphinx SVG to PDF converter extension")
|
||||||
|
(description "A Sphinx extension to convert SVG images to PDF in case the builder does not support
|
||||||
|
SVG images natively (e.g. LaTeX).")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
Loading…
Reference in a new issue