~ruther/guix-local

f9a65318ddc34a84fea128b756d23ad619f519dc — Efraim Flashner 9 years ago aa6c09e
gnu: python-parse: Use 'modify-phases' syntax.

* gnu/packages/python.scm (python-parse)[arguments]: Use 'modify-phases'
syntax.
1 files changed, 3 insertions(+), 4 deletions(-)

M gnu/packages/python.scm
M gnu/packages/python.scm => gnu/packages/python.scm +3 -4
@@ 1412,10 1412,9 @@ backported for previous versions of Python from 2.4 to 3.3.")
    (build-system python-build-system)
    (arguments
     `(#:phases
       (alist-replace
        'check
        (lambda _ (zero? (system* "python" "test_parse.py")))
        %standard-phases)))
       (modify-phases %standard-phases
         (replace 'check
           (lambda _ (zero? (system* "python" "test_parse.py")))))))
    (home-page "https://github.com/r1chardj0n3s/parse")
    (synopsis "Parse strings")
    (description