summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-31 13:55:36 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:47 +0100
commit4e0ee3bb0c7d4e229188c7f51baafa0319b66488 (patch)
tree51d37f3799df009b5a7fe0a609b10528d21f3355 /gnu
parent52489303ecdffe473715039ecbdd5c7e5c201cc2 (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.scm10
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:
757 757
758(define-public python-ruamel.yaml 758(define-public python-ruamel.yaml
759 (package 759 (package
760 ;; TODO: Fix package name.
760 (name "python-ruamel.yaml") 761 (name "python-ruamel.yaml")
761 (version "0.18.6") 762 (version "0.18.14")
762 (source 763 (source
763 (origin 764 (origin
764 (method url-fetch) 765 (method url-fetch)
765 (uri (pypi-uri "ruamel.yaml" version)) 766 (uri (pypi-uri "ruamel.yaml" version))
766 (sha256 767 (sha256
767 (base32 768 (base32
768 "06rimidc9nb3i3r90n3a1zwf0qxw24zqykb3wpxwd1p72yifc9wb")))) 769 "1dsj3zcb5p73p2xpimdig45hrcvjgnzyyc37jcaxyr63mrmbf9vj"))))
769 (build-system python-build-system) 770 (build-system pyproject-build-system)
771 (arguments (list #:tests? #f)) ;no tests in PyPI archive
770 (native-inputs 772 (native-inputs
771 (list python-pytest)) 773 (list python-setuptools))
772 (propagated-inputs 774 (propagated-inputs
773 (list python-ruamel.yaml.clib)) 775 (list python-ruamel.yaml.clib))
774 (home-page "https://sourceforge.net/projects/ruamel-yaml/") 776 (home-page "https://sourceforge.net/projects/ruamel-yaml/")