guix-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 6/8] gnu: Add python-fastimport.


From: Marius Bakke
Subject: Re: [PATCH 6/8] gnu: Add python-fastimport.
Date: Tue, 17 Jan 2017 23:50:19 +0100
User-agent: Notmuch/0.23.5 (https://notmuchmail.org) Emacs/25.1.1 (x86_64-unknown-linux-gnu)

Danny Milosavljevic <address@hidden> writes:

> * gnu/packages/python.scm (python-fastimport, python2-fastimport):
>   New variables.
> ---
>  gnu/packages/python.scm | 19 +++++++++++++++++++
>  1 file changed, 19 insertions(+)
>
> diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
> index 8c81eae64..cd0a47043 100644
> --- a/gnu/packages/python.scm
> +++ b/gnu/packages/python.scm
> @@ -12679,6 +12679,25 @@ Features:
>  (define-public python2-geventhttpclient
>    (package-with-python2 python-geventhttpclient))
>  
> +(define-public python-fastimport
> +  (package
> +    (name "python-fastimport")
> +    (version "0.9.6")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (pypi-uri "fastimport" version))
> +        (sha256
> +          (base32 "1aqjsin4rmqm7ln4j0p73fzxifws6c6ikgyhav7r137m2ixsxl43"))))
> +    (build-system python-build-system)
> +    (home-page "https://github.com/jelmer/python-fastimport";)
> +    (synopsis "git fastimport/fastexport parser")
> +    (description "This package provides a git fastimport/fastexport parser.")

Does `guix lint` accept the lowercase synopsis?

Here is what I have:

    (synopsis "VCS fastimport parser and generator in Python")
    (description
     "This package provides a parser for and generator of the Git
@url{https://www.kernel.org/pub/software/scm/git/docs/git-fast-import.html,fastimport}
format.")

> +    (license license:gpl2+)))
> +
> +(define-public python2-fastimport
> +  (package-with-python2 python-fastimport))
> +
>  (define-public python-dulwich
>    (package
>      (name "python-dulwich")

Attachment: signature.asc
Description: PGP signature


reply via email to

[Prev in Thread] Current Thread [Next in Thread]