From 64cb064c0c55f13b53d2d9fa8fc3e8e82888e563 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ludovic=20Court=C3=A8s?= Date: Tue, 22 Dec 2015 22:24:41 +0100 Subject: [PATCH] gnu: python-wrapper: Append "-wrapper" to the underlying package name. Reported by Federico Beffa . * gnu/packages/python.scm (wrap-python3): Change the default value of 'name' to include the name of PYTHON. This disambiguates between 'python-minimal-wrapper' and 'python-wrapper'. --- gnu/packages/python.scm | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm index 5880cac099..72a3507d1f 100644 --- a/gnu/packages/python.scm +++ b/gnu/packages/python.scm @@ -307,7 +307,9 @@ data types.") (inputs `(("openssl" ,openssl) ("zlib" ,zlib))))) -(define* (wrap-python3 python #:optional (name "python-wrapper")) +(define* (wrap-python3 python + #:optional + (name (string-append (package-name python) "-wrapper"))) (package (inherit python) (name name) (source #f)