diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2025-07-27 19:31:39 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2025-07-27 19:31:39 +0300 |
commit | c789e066fde692e739e50664c6a9ca8da0a716e8 (patch) | |
tree | 827a113c1df686530a5b02f3e85c4d2c7143daca | |
parent | d7bc9e7bf1f453129e2dc300cdc8f70c7f8f9ebc (diff) |
gnu: python-ruamel.yaml.clib: Update to 0.2.12.
* gnu/packages/serialization.scm (python-ruamel.yaml.clib): Update to
0.2.12.
[arguments]: Move the 'cythonize-code phase to after the
'ensure-no-cythonized-files phase.
Change-Id: Ic304cc574df485f0c116150dfbed686c1351bc64
-rw-r--r-- | gnu/packages/serialization.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/serialization.scm b/gnu/packages/serialization.scm index 89d362c52f..73c02bdab4 100644 --- a/gnu/packages/serialization.scm +++ b/gnu/packages/serialization.scm @@ -873,7 +873,7 @@ style and key ordering are kept, so you can diff the source.") (define-public python-ruamel.yaml.clib (package (name "python-ruamel.yaml.clib") - (version "0.2.9") + (version "0.2.12") (source (origin ;; pypi release code has cythonized code without corresponding source. @@ -884,7 +884,7 @@ style and key ordering are kept, so you can diff the source.") (file-name (hg-file-name name version)) (sha256 (base32 - "100nyixfikwivsxiwkq2frgbfkqvvl112wkn0sgc57xq0p1s0dv8")) + "12ixp46706pl911f6i4wmik8x0j9vnxy2cqx65ixbdl9cnvqva2l")) (modules '((guix build utils))) (snippet '(begin @@ -896,7 +896,7 @@ style and key ordering are kept, so you can diff the source.") #:phases (modify-phases %standard-phases (delete 'sanity-check) ; Depends on python-ruamel.yaml - (add-after 'unpack 'cythonize-code + (add-after 'ensure-no-cythonized-files 'cythonize-code (lambda _ (invoke "cython" "_ruamel_yaml.pyx")))))) (native-inputs |