Thanks for this patch! Can you split it into two patches? We prefer to make one change (such as a package addition) per commit. More comments are below.
On Fri, Jul 01, 2016 at 02:16:01PM -0400, Troy Sankey wrote: > --- > gnu/packages/mail.scm | 31 +++++++++++++++++++++++++++++++ > gnu/packages/python.scm | 24 ++++++++++++++++++++++++ Please remember to add your name to the list of authors at the beginning of the files. > +(define-public alot > + (uri (string-append "https://github.com/pazz/alot/archive/" > + version ".tar.gz")) When possible, we prefer to use PyPi for downloading Python source code. But in this case, I don't see version 0.3.7 on PyPi, so we'll use GitHub. > + #:python ,python-2)) If Python 3 is unsupported, can you mention it in a brief comment? > + (synopsis "Commandline MUA using notmuch and urwid") How about "Command-line mail client using @code{notmuch} and @code{urwid}"? I'm not sure if the synopses support texinfo markup, while I know the descriptions do. > + (description > + "Alot is an experimental terminal MUA based on notmuch mail. It is > +written in python using the urwid toolkit.") Can you unpack 'MUA' and wrap notmuch and urwid in texinfo as above? > +(define-public python-urwidtrees > + (arguments > + '(#:tests? #f)) If there are no tests, can you say so in a comment as in 'alot'? > + (native-inputs `(("python-setuptools" ,python-setuptools))) > + (inputs `(("python-urwid" ,python-urwid))) > + (home-page "https://github.com/pazz/urwidtrees") > + (synopsis "Tree widgets for urwid") > + (description "Tree widgets for urwid.") How about adapting the description from the home-page? > + (license gpl3+)))