diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-01 22:21:30 -0400 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2023-04-11 20:35:11 -0400 |
commit | 0ae8d7ca19bfab72106449119774effa9a53a197 (patch) | |
tree | d8bd4ac3ae2600bad70b72f302f673713cdce2ff /gnu/packages | |
parent | 2d0cdf0325520e61c93cf739bd6a970306f76045 (diff) | |
download | guix-0ae8d7ca19bfab72106449119774effa9a53a197.tar guix-0ae8d7ca19bfab72106449119774effa9a53a197.tar.gz |
gnu: gi-docgen: Update to 2023.1.
* gnu/packages/gnome.scm (gi-docgen): Update to 2023.1.
[propagated-inputs]: Remove python-toml; add python-tomli.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gnome.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm index 8c38b94a21..e47062b3fd 100644 --- a/gnu/packages/gnome.scm +++ b/gnu/packages/gnome.scm @@ -5431,19 +5431,19 @@ and other secrets. It communicates with the \"Secret Service\" using DBus.") (define-public gi-docgen (package (name "gi-docgen") - (version "2022.1") + (version "2023.1") (source (origin (method url-fetch) (uri (pypi-uri "gi-docgen" version)) (sha256 (base32 - "1v2wspm2ld27lq1n5v5pzrmkhchfa7p7ahp8rmjm4zcdyagqf7gr")))) + "18vzbw1k531qxi9qcwlxl97xk9dg16has7khg6a5d0pqrflyvbc8")))) (build-system python-build-system) (propagated-inputs (list python-jinja2 python-markdown python-markupsafe python-pygments - python-toml + python-tomli python-typogrify)) (home-page "https://gitlab.gnome.org/GNOME/gi-docgen") (synopsis "Documentation tool for GObject-based libraries") |