~ruther/guix-local

5dfd5b82c251918d593d57349d7bb4eb866de532 — Ludovic Courtès 12 years ago 8bf8d7c
build-system/python: Add #:test-target parameter.

* guix/build-system/python.scm (python-build): Add #:test-target
  parameter.  Reported by Eric Bavier <ericbavier@gmail.com>.
1 files changed, 2 insertions(+), 1 deletions(-)

M guix/build-system/python.scm
M guix/build-system/python.scm => guix/build-system/python.scm +2 -1
@@ 97,6 97,7 @@ prepended to the name."
                       #:key
                       (python (default-python))
                       (tests? #t)
                       (test-target "test")
                       (configure-flags ''())
                       (phases '(@ (guix build python-build-system)
                                   %standard-phases))


@@ 125,7 126,7 @@ provides a 'setup.py' file as its build system."
                                   source)
                     #:configure-flags ,configure-flags
                     #:system ,system
                     #:test-target "test"
                     #:test-target ,test-target
                     #:tests? ,tests?
                     #:phases ,phases
                     #:outputs %outputs