guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/06: gnu: python-parse: Use 'modify-phases' syntax.


From: Efraim Flashner
Subject: 06/06: gnu: python-parse: Use 'modify-phases' syntax.
Date: Thu, 27 Oct 2016 20:32:13 +0000 (UTC)

efraim pushed a commit to branch core-updates
in repository guix.

commit f9a65318ddc34a84fea128b756d23ad619f519dc
Author: Efraim Flashner <address@hidden>
Date:   Thu Oct 27 23:29:56 2016 +0300

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

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index a5fabd0..73cabe8 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]