diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 13:55:36 +0100 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-09-25 09:35:47 +0100 |
| commit | 4e0ee3bb0c7d4e229188c7f51baafa0319b66488 (patch) | |
| tree | 51d37f3799df009b5a7fe0a609b10528d21f3355 /gnu | |
| parent | 52489303ecdffe473715039ecbdd5c7e5c201cc2 (diff) | |
gnu: python-ruamel.yaml: Update to 0.18.14.
* gnu/packages/serialization.scm (python-ruamel.yaml): Update to 0.18.14.
[build-system]: Use pyproject.
[native-inputs]: Remove python-pytest; add python-setuptools.
Change-Id: Iaf7be2953631c31156019f18c15804eb66071597
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/serialization.scm | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm index 3bd54ebc0c2..86829c0d7c2 100644 --- a/gnu/packages/serialization.scm +++ b/gnu/packages/serialization.scm @@ -757,18 +757,20 @@ includes the following features: (define-public python-ruamel.yaml (package + ;; TODO: Fix package name. (name "python-ruamel.yaml") - (version "0.18.6") + (version "0.18.14") (source (origin (method url-fetch) (uri (pypi-uri "ruamel.yaml" version)) (sha256 (base32 - "06rimidc9nb3i3r90n3a1zwf0qxw24zqykb3wpxwd1p72yifc9wb")))) - (build-system python-build-system) + "1dsj3zcb5p73p2xpimdig45hrcvjgnzyyc37jcaxyr63mrmbf9vj")))) + (build-system pyproject-build-system) + (arguments (list #:tests? #f)) ;no tests in PyPI archive (native-inputs - (list python-pytest)) + (list python-setuptools)) (propagated-inputs (list python-ruamel.yaml.clib)) (home-page "https://sourceforge.net/projects/ruamel-yaml/") |
