Ryan Prior via Guix-patches via schreef op ma 27-09-2021 om 02:20 [+0000]: > * gnu/packages/python-xyz.scm (python-multipledispatch): New variable. > --- > gnu/packages/python-xyz.scm | 20 ++++++++++++++++++++ > 1 file changed, 20 insertions(+) > > diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm > index a34c444a87..c833c95b5a 100644 > --- a/gnu/packages/python-xyz.scm > +++ b/gnu/packages/python-xyz.scm > @@ -26584,6 +26584,26 @@ objects in the combined source, and how they define or use each other. The > graph can be output for rendering by GraphViz or yEd.") > (license license:gpl2))) > > +(define-public python-multipledispatch > + (package > + (name "python-multipledispatch") > + (version "0.6.0") > + (source > + (origin > + (method url-fetch) > + (uri (pypi-uri "multipledispatch" version)) > + (sha256 > + (base32 > + "1slblghfjg9fdi9zpd7gmrkvfbv20nrdgnrymcnbky8bzm8i9ax7")))) > + (build-system python-build-system) > + (propagated-inputs `(("six" ,python-six))) The convention is to use the package name of the input package as input label ("python-six" instead of "six" in this case). This is important for the "guix style" in , which, when it will be in master, allows writing this package definition as (define-public python-multipledispatch (package (name "python-multipledispatch") ... (propagated-inputs (list python-six)) ...)) (The long-term goal appears to be to remove input labels completely.) Greetings, Maxime.