[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/06: gnu: wrap-python3: Clarify relationship with wrapped package.
From: |
guix-commits |
Subject: |
03/06: gnu: wrap-python3: Clarify relationship with wrapped package. |
Date: |
Tue, 9 Aug 2022 11:59:36 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit bc03aa438bef326d47aafaed99bc6de45e518c53
Author: Philip McGrath <philip@philipmcgrath.com>
AuthorDate: Mon Jul 25 16:05:10 2022 -0400
gnu: wrap-python3: Clarify relationship with wrapped package.
The previous description could give the impression that the user faced a
choice between `python` and `python3`, but could not have both at once.
In fact, the packages `python-wrapper` and `python-minimal-wrapper`
already provide both sets of names.
* gnu/packages/python.scm (wrap-python3)[description]: Tweak.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
---
gnu/packages/python.scm | 8 ++++++--
1 file changed, 6 insertions(+), 2 deletions(-)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index 4fcee28ba3..23407e4e84 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -58,6 +58,7 @@
;;; Copyright © 2019 Tanguy Le Carrour <tanguy@bioneland.org>
;;; Copyright © 2020 Jan (janneke) Nieuwenhuizen <janneke@gnu.org>
;;; Copyright © 2020, 2021 Greg Hogan <code@greghogan.com>
+;;; Copyright © 2022 Philip McGrath <philip@philipmcgrath.com>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -662,10 +663,13 @@ for more information.")))
(synopsis "Wrapper for the Python 3 commands")
(description
"This package provides wrappers for the commands of Python@tie{}3.x such
-that they can be invoked under their usual name---e.g., @command{python}
+that they can also be invoked under their usual names---e.g., @command{python}
instead of @command{python3} or @command{pip} instead of @command{pip3}.
+
To function properly, this package should not be installed together with the
-@command{python} package.")))
+@code{python} package: this package uses the @code{python} package as a
+propagated input, so installing this package already makes both the versioned
+and the unversioned commands available.")))
(define-public python-wrapper (wrap-python3 python))
(define-public python-minimal-wrapper (wrap-python3 python-minimal))
- branch master updated (fdafd40432 -> f194df2bb4), guix-commits, 2022/08/09
- 01/06: tests: git: Write files as UTF-8., guix-commits, 2022/08/09
- 02/06: channels: Consider news files as UTF-8-encoded by default., guix-commits, 2022/08/09
- 03/06: gnu: wrap-python3: Clarify relationship with wrapped package.,
guix-commits <=
- 04/06: services: qemu-guest-agent: Fix arguments to qemu-ga., guix-commits, 2022/08/09
- 06/06: gnu: vorta: Update to 0.8.7., guix-commits, 2022/08/09
- 05/06: tests: Add qemu-guest-agent system test., guix-commits, 2022/08/09