From 4e0ee3bb0c7d4e229188c7f51baafa0319b66488 Mon Sep 17 00:00:00 2001 From: Sharlatan Hellseher Date: Thu, 31 Jul 2025 13:55:36 +0100 Subject: [PATCH] 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 --- gnu/packages/serialization.scm | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm index 3bd54ebc0c2d396f309f28f7b962ba4bb9eb50a7..86829c0d7c2d54229fd27ee3decc42b3e1326ce2 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/")