diff options
author | Marius Bakke <mbakke@fastmail.com> | 2016-12-13 19:28:27 +0100 |
---|---|---|
committer | Leo Famulari <leo@famulari.name> | 2016-12-13 17:04:20 -0500 |
commit | 6734c7bae34888756eb40ed13a8c16f3e35cc53d (patch) | |
tree | d38c60c19a168b5a73b9bc05ca50403fbed0d857 | |
parent | e2816ac72d6225ecb5ab740b7313bfc28c9d7764 (diff) | |
download | patches-6734c7bae34888756eb40ed13a8c16f3e35cc53d.tar patches-6734c7bae34888756eb40ed13a8c16f3e35cc53d.tar.gz |
gnu: python-cairocffi: Use 'modify-phases' syntax.
* gnu/packages/python.scm (python-cairocffi)[arguments]: Use 'modify-phases'.
-rw-r--r-- | gnu/packages/python.scm | 36 |
1 files changed, 18 insertions, 18 deletions
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index bed8124b55..37a595f7cb 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -4278,24 +4278,24 @@ support for Python 3 and PyPy. It is based on cffi.") `(("python-xcffib" ,python-xcffib))) ; used at run time (arguments `(#:phases - (alist-cons-after - 'install 'install-doc - (lambda* (#:key inputs outputs #:allow-other-keys) - (let* ((data (string-append (assoc-ref outputs "doc") "/share")) - (doc (string-append data "/doc/" ,name "-" ,version)) - (html (string-append doc "/html"))) - (setenv "LD_LIBRARY_PATH" - (string-append (assoc-ref inputs "cairo") "/lib" ":" - (assoc-ref inputs "gdk-pixbuf") "/lib")) - (setenv "LANG" "en_US.UTF-8") - (mkdir-p html) - (for-each (lambda (file) - (copy-file (string-append "." file) - (string-append doc file))) - '("/README.rst" "/CHANGES" "/LICENSE")) - (system* "python" "setup.py" "build_sphinx") - (copy-recursively "docs/_build/html" html))) - %standard-phases))) + (modify-phases %standard-phases + (add-after 'install 'install-doc + (lambda* (#:key inputs outputs #:allow-other-keys) + (let* ((data (string-append (assoc-ref outputs "doc") "/share")) + (doc (string-append data "/doc/" ,name "-" ,version)) + (html (string-append doc "/html"))) + (setenv "LD_LIBRARY_PATH" + (string-append (assoc-ref inputs "cairo") "/lib" ":" + (assoc-ref inputs "gdk-pixbuf") "/lib")) + (setenv "LANG" "en_US.UTF-8") + (mkdir-p html) + (for-each (lambda (file) + (copy-file (string-append "." file) + (string-append doc file))) + '("/README.rst" "/CHANGES" "/LICENSE")) + (system* "python" "setup.py" "build_sphinx") + (copy-recursively "docs/_build/html" html) + #t)))))) (home-page "https://github.com/SimonSapin/cairocffi") (synopsis "Python bindings and object-oriented API for Cairo") (description |