summaryrefslogtreecommitdiff
path: root/gnu/packages/serialization.scm
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-31 13:49:16 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-09-25 09:35:47 +0100
commit52489303ecdffe473715039ecbdd5c7e5c201cc2 (patch)
treeedd33ae2b7b71626c8c2df22f30e972984bbaaef /gnu/packages/serialization.scm
parentf8cce36a80cd0b2215bc4218fad571bbdca1b457 (diff)
gnu: python-ruamel.yaml.clib: Switch to pyproject-build-system.
* gnu/packages/serialization.scm (python-ruamel.yaml.clib): [build-system]: Use pyproject. [native-inputs]: Add python-setuptools. Change-Id: I25e214dfbc4359b0dc9d6fd2a358472ac0ebb133
Diffstat (limited to 'gnu/packages/serialization.scm')
-rw-r--r--gnu/packages/serialization.scm5
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm
index 88b08d17a1e..3bd54ebc0c2 100644
--- a/gnu/packages/serialization.scm
+++ b/gnu/packages/serialization.scm
@@ -798,6 +798,7 @@ style and key ordering are kept, so you can diff the source.")
798 798
799(define-public python-ruamel.yaml.clib 799(define-public python-ruamel.yaml.clib
800 (package 800 (package
801 ;; TODO: Fix the name
801 (name "python-ruamel.yaml.clib") 802 (name "python-ruamel.yaml.clib")
802 (version "0.2.12") 803 (version "0.2.12")
803 (source 804 (source
@@ -815,7 +816,7 @@ style and key ordering are kept, so you can diff the source.")
815 (snippet 816 (snippet
816 '(begin 817 '(begin
817 (delete-file "_ruamel_yaml.c"))))) 818 (delete-file "_ruamel_yaml.c")))))
818 (build-system python-build-system) 819 (build-system pyproject-build-system)
819 (arguments 820 (arguments
820 `(#:tests? #f ; This package is split from python-ruamel.yaml and 821 `(#:tests? #f ; This package is split from python-ruamel.yaml and
821 ; depends on modules from it for the test suite. 822 ; depends on modules from it for the test suite.
@@ -826,7 +827,7 @@ style and key ordering are kept, so you can diff the source.")
826 (lambda _ 827 (lambda _
827 (invoke "cython" "_ruamel_yaml.pyx")))))) 828 (invoke "cython" "_ruamel_yaml.pyx"))))))
828 (native-inputs 829 (native-inputs
829 (list python-cython)) 830 (list python-cython python-setuptools))
830 (home-page "https://sourceforge.net/p/ruamel-yaml-clib/code/ci/default/tree") 831 (home-page "https://sourceforge.net/p/ruamel-yaml-clib/code/ci/default/tree")
831 (synopsis "C version of reader, parser and emitter for ruamel.yaml") 832 (synopsis "C version of reader, parser and emitter for ruamel.yaml")
832 (description 833 (description