gnu: python-pyparsing: Use 'modify-phases' syntax.
* gnu/packages/python.scm (python-pyparsing)[arguments]<#:phases>: Use 'modify-phases'.
This commit is contained in:
parent
6e864d0081
commit
007176e710
|
@ -3955,11 +3955,9 @@ library, libgit2 implements Git plumbing.")
|
||||||
(outputs '("out" "doc"))
|
(outputs '("out" "doc"))
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f ; no test target
|
`(#:tests? #f ; no test target
|
||||||
#:modules ((guix build python-build-system)
|
|
||||||
(guix build utils))
|
|
||||||
#:phases
|
#:phases
|
||||||
(alist-cons-after
|
(modify-phases %standard-phases
|
||||||
'install 'install-doc
|
(add-after 'install 'install-doc
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((doc (string-append (assoc-ref outputs "doc")
|
(let* ((doc (string-append (assoc-ref outputs "doc")
|
||||||
"/share/doc/" ,name "-" ,version))
|
"/share/doc/" ,name "-" ,version))
|
||||||
|
@ -3973,8 +3971,8 @@ library, libgit2 implements Git plumbing.")
|
||||||
(install-file file tgt))
|
(install-file file tgt))
|
||||||
(find-files dir ".*")))
|
(find-files dir ".*")))
|
||||||
(list "docs" "htmldoc" "examples")
|
(list "docs" "htmldoc" "examples")
|
||||||
(list doc html-doc examples))))
|
(list doc html-doc examples))
|
||||||
%standard-phases)))
|
#t))))))
|
||||||
(home-page "http://pyparsing.wikispaces.com")
|
(home-page "http://pyparsing.wikispaces.com")
|
||||||
(synopsis "Python parsing class library")
|
(synopsis "Python parsing class library")
|
||||||
(description
|
(description
|
||||||
|
|
Loading…
Reference in New Issue