gnu: python-ruamel-yaml: Update to 0.18.6.

* gnu/package/serialization.scm (python-ruamel-yaml): Update to 0.18.6.
(python-ruamel.yaml-0.16): New variable.
* gnu/packages/package-management.scm (conda)[inputs]: Replace
python-ruamel.yaml with python-ruamel.yaml-0.16.
* gnu/packages/backup.scm (borgmatic)[inputs]: Replace python-ruamel.yaml with
python-ruamel.yaml-0.16.
* gnu/packages/python-xyz.scm (dynaconf)[inputs]: Replace python-ruamel.yaml
with python-ruamel.yaml-0.16.

Change-Id: Iff9eeeae043c9547d93a6c780f0c30bd760490d9

Change-Id: I43cad7e3936f62d209fbba7e86b93519cfc1c1ba
Signed-off-by: Arun Isaac <arunisaac@systemreboot.net>
This commit is contained in:
Arun Isaac 2023-10-20 16:40:22 +01:00
parent 127db3f844
commit e5ae409276
No known key found for this signature in database
GPG Key ID: 2E25EE8B61802BB3
4 changed files with 18 additions and 5 deletions

View File

@ -1341,7 +1341,7 @@ compression parameters used by Gzip.")
(invoke "pytest"))))))) (invoke "pytest")))))))
(inputs (inputs
(list borg python-colorama python-jsonschema python-requests (list borg python-colorama python-jsonschema python-requests
python-ruamel.yaml)) python-ruamel.yaml-0.16))
(native-inputs (native-inputs
(list python-flexmock python-pytest python-pytest-cov)) (list python-flexmock python-pytest python-pytest-cov))
(home-page "https://torsion.org/borgmatic/") (home-page "https://torsion.org/borgmatic/")

View File

@ -23,6 +23,7 @@
;;; Copyright © 2022, 2023 Zhu Zihao <all_but_last@163.com> ;;; Copyright © 2022, 2023 Zhu Zihao <all_but_last@163.com>
;;; Copyright © 2023 jgart <jgart@dismail.de> ;;; Copyright © 2023 jgart <jgart@dismail.de>
;;; Copyright © 2023 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de> ;;; Copyright © 2023 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
;;; Copyright © 2024 Arun Isaac <arunisaac@systemreboot.net>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -1251,7 +1252,7 @@ extracting, creating, and converting between formats.")
python-pyyaml python-pyyaml
python-requests python-requests
python-responses python-responses
python-ruamel.yaml python-ruamel.yaml-0.16
python-tqdm python-tqdm
;; XXX: This is dragged in by libarchive and is needed at runtime. ;; XXX: This is dragged in by libarchive and is needed at runtime.
zstd)) zstd))

View File

@ -33347,7 +33347,7 @@ Python @code{set} interface.")
"--maxfail=1" "tests/")))))))) "--maxfail=1" "tests/"))))))))
(propagated-inputs (propagated-inputs
(list python-click python-configobj python-dotenv-0.13.0 (list python-click python-configobj python-dotenv-0.13.0
python-ruamel.yaml python-toml python-tomli)) python-ruamel.yaml-0.16 python-toml python-tomli))
(native-inputs (native-inputs
(list python-django python-flask python-pytest python-pytest-cov (list python-django python-flask python-pytest python-pytest-cov
python-pytest-mock)) python-pytest-mock))

View File

@ -745,14 +745,14 @@ includes the following features:
(define-public python-ruamel.yaml (define-public python-ruamel.yaml
(package (package
(name "python-ruamel.yaml") (name "python-ruamel.yaml")
(version "0.16.13") (version "0.18.6")
(source (source
(origin (origin
(method url-fetch) (method url-fetch)
(uri (pypi-uri "ruamel.yaml" version)) (uri (pypi-uri "ruamel.yaml" version))
(sha256 (sha256
(base32 (base32
"0hm9yg785f46bkrgqknd6fdvmkby9dpzjnm0b63qf0i748acaj5v")))) "06rimidc9nb3i3r90n3a1zwf0qxw24zqykb3wpxwd1p72yifc9wb"))))
(build-system python-build-system) (build-system python-build-system)
(native-inputs (native-inputs
(list python-pytest)) (list python-pytest))
@ -771,6 +771,18 @@ and has round-trip loaders and dumpers. It supports comments. Block
style and key ordering are kept, so you can diff the source.") style and key ordering are kept, so you can diff the source.")
(license license:expat))) (license license:expat)))
(define-public python-ruamel.yaml-0.16
(package
(inherit python-ruamel.yaml)
(version "0.16.13")
(source
(origin
(method url-fetch)
(uri (pypi-uri "ruamel.yaml" version))
(sha256
(base32
"0hm9yg785f46bkrgqknd6fdvmkby9dpzjnm0b63qf0i748acaj5v"))))))
(define-public python-ruamel.yaml.clib (define-public python-ruamel.yaml.clib
(package (package
(name "python-ruamel.yaml.clib") (name "python-ruamel.yaml.clib")