diff options
author | Ben Sturmfels <ben@sturm.com.au> | 2021-10-04 22:00:27 +1100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-10-07 10:47:43 +0200 |
commit | cd52869134be2433ac25e3ca19846d7b96de904e (patch) | |
tree | 1b884c835805fd5f972fb5e17aaebf2e837e1591 | |
parent | 6be0bdf50660d1019d9fe469f139f03f12bf9e21 (diff) |
gnu: pelican: Update to 4.7.0.
* gnu/packages/python-xyz.scm (pelican): Update to 4.7.0.
[inputs]: Add field. Add dependency on python-rich.
[propagated-inputs]: Remove python-six. Move dependencies to inputs. Remove
field.
[home-page]: Update link.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/python-xyz.scm | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm index 14f5fdef54..fa4b11511a 100644 --- a/gnu/packages/python-xyz.scm +++ b/gnu/packages/python-xyz.scm @@ -4912,27 +4912,29 @@ interested parties to subscribe to events, or \"signals\".") (define-public pelican (package (name "pelican") - (version "4.2.0") + (version "4.7.0") (source (origin (method url-fetch) (uri (pypi-uri "pelican" version)) (sha256 (base32 - "0mp7hjyhs38ag1hyfcy882g400z0babqi72pnli46dqijfhajzmy")))) + "0g1sbzlz5mfc70gwgnj3lz4kf4psdjl96n6ywklv8z817m1khxdd")))) (build-system python-build-system) - (propagated-inputs + (inputs `(("python-blinker" ,python-blinker) ("python-dateutil" ,python-dateutil) + ;; Ignoring `guix lint` warning as python-docutils is used to support + ;; reStructuredText processing at runtime. ("python-docutils" ,python-docutils) ("python-feedgenerator" ,python-feedgenerator) ("python-jinja2" ,python-jinja2) ("python-markdown" ,python-markdown) ("python-pygments" ,python-pygments) ("python-pytz" ,python-pytz) - ("python-six" ,python-six) + ("python-rich" ,python-rich) ("python-unidecode" ,python-unidecode))) - (home-page "https://getpelican.com/") + (home-page "https://blog.getpelican.com/") (arguments `(;; XXX Requires a lot more packages to do unit tests :P #:tests? #f)) |