mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-23 02:59:17 -05:00
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:
parent
127db3f844
commit
e5ae409276
4 changed files with 18 additions and 5 deletions
|
@ -1341,7 +1341,7 @@ (define-public borgmatic
|
|||
(invoke "pytest")))))))
|
||||
(inputs
|
||||
(list borg python-colorama python-jsonschema python-requests
|
||||
python-ruamel.yaml))
|
||||
python-ruamel.yaml-0.16))
|
||||
(native-inputs
|
||||
(list python-flexmock python-pytest python-pytest-cov))
|
||||
(home-page "https://torsion.org/borgmatic/")
|
||||
|
|
|
@ -23,6 +23,7 @@
|
|||
;;; Copyright © 2022, 2023 Zhu Zihao <all_but_last@163.com>
|
||||
;;; Copyright © 2023 jgart <jgart@dismail.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.
|
||||
;;;
|
||||
|
@ -1251,7 +1252,7 @@ (define-public conda
|
|||
python-pyyaml
|
||||
python-requests
|
||||
python-responses
|
||||
python-ruamel.yaml
|
||||
python-ruamel.yaml-0.16
|
||||
python-tqdm
|
||||
;; XXX: This is dragged in by libarchive and is needed at runtime.
|
||||
zstd))
|
||||
|
|
|
@ -33347,7 +33347,7 @@ (define-public dynaconf
|
|||
"--maxfail=1" "tests/"))))))))
|
||||
(propagated-inputs
|
||||
(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
|
||||
(list python-django python-flask python-pytest python-pytest-cov
|
||||
python-pytest-mock))
|
||||
|
|
|
@ -745,14 +745,14 @@ (define-public python-msgspec
|
|||
(define-public python-ruamel.yaml
|
||||
(package
|
||||
(name "python-ruamel.yaml")
|
||||
(version "0.16.13")
|
||||
(version "0.18.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (pypi-uri "ruamel.yaml" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0hm9yg785f46bkrgqknd6fdvmkby9dpzjnm0b63qf0i748acaj5v"))))
|
||||
"06rimidc9nb3i3r90n3a1zwf0qxw24zqykb3wpxwd1p72yifc9wb"))))
|
||||
(build-system python-build-system)
|
||||
(native-inputs
|
||||
(list python-pytest))
|
||||
|
@ -771,6 +771,18 @@ (define-public python-ruamel.yaml
|
|||
style and key ordering are kept, so you can diff the source.")
|
||||
(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
|
||||
(package
|
||||
(name "python-ruamel.yaml.clib")
|
||||
|
|
Loading…
Reference in a new issue