~ruther/guix-local

c789e066fde692e739e50664c6a9ca8da0a716e8 — Efraim Flashner 9 months ago d7bc9e7
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
1 files changed, 3 insertions(+), 3 deletions(-)

M gnu/packages/serialization.scm
M gnu/packages/serialization.scm => gnu/packages/serialization.scm +3 -3
@@ 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