diff options
author | Andreas Enge <andreas@enge.fr> | 2013-09-04 18:35:49 +0200 |
---|---|---|
committer | Andreas Enge <andreas@enge.fr> | 2013-09-04 18:35:49 +0200 |
commit | 1611eccd106fa14e0161b7c562f3a09931ed97e1 (patch) | |
tree | eb047993d80d77fba059afbf8be7b46294938ee9 /gnu/packages | |
parent | 3df47231e6c632aadcd7b103bb5b399a8d29772d (diff) | |
download | guix-1611eccd106fa14e0161b7c562f3a09931ed97e1.tar.gz guix-1611eccd106fa14e0161b7c562f3a09931ed97e1.zip |
gnu: bazaar: Switch back to Python 2.
* gnu/packages/version-control.scm (bazaar): Switch back to Python 2.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/version-control.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/version-control.scm b/gnu/packages/version-control.scm index ed64b460db..1b0e1bd6e0 100644 --- a/gnu/packages/version-control.scm +++ b/gnu/packages/version-control.scm @@ -58,7 +58,9 @@ ;; require Zsh. `(("gettext" ,guix:gettext))) (arguments - `(#:tests? #f)) ; no test target + `(#:tests? #f ; no test target + #:python ,python-2)) ; Python 3 apparently not yet supported, see + ; https://answers.launchpad.net/bzr/+question/229048 (home-page "https://gnu.org/software/bazaar") (synopsis "Decentralized revision control system") (description |