diff options
author | Andreas Enge <andreas@enge.fr> | 2013-09-10 11:42:07 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2013-09-10 11:58:02 +0200 |
commit | 1d1f939798d2649bbabc962e37f90efe5805e202 (patch) | |
tree | 2ce08d4be8b9a0bb38979c608cc09292449633e4 | |
parent | 11bb85a10d4a84dab7fdfaaaf7012b743ce7a09f (diff) | |
download | patches-1d1f939798d2649bbabc962e37f90efe5805e202.tar patches-1d1f939798d2649bbabc962e37f90efe5805e202.tar.gz |
guix: python: Add parameter #:phases to build system.
* guix/build-system/python.scm (python-build): Use parameter #:phases.
-rw-r--r-- | guix/build-system/python.scm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/guix/build-system/python.scm b/guix/build-system/python.scm index d120cc9cc3..d018ee70f3 100644 --- a/guix/build-system/python.scm +++ b/guix/build-system/python.scm @@ -128,6 +128,7 @@ provides a 'setup.py' file as its build system." #:system ,system #:test-target "test" #:tests? ,tests? + #:phases ,phases #:outputs %outputs #:search-paths ',(map search-path-specification->sexp (append python-search-paths |