guix-patches
[Top][All Lists]
Advanced

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

bug#26414: [PATCH 2/3] gnu: Add python-pyatspi.


From: Marius Bakke
Subject: bug#26414: [PATCH 2/3] gnu: Add python-pyatspi.
Date: Sun, 09 Apr 2017 17:18:43 +0200
User-agent: Notmuch/0.24.1 (https://notmuchmail.org) Emacs/25.1.1 (x86_64-unknown-linux-gnu)

宋文武 <address@hidden> writes:

> * gnu/packages/gnome.scm (python-pyatspi): New package.
> ---
>  gnu/packages/gnome.scm | 28 ++++++++++++++++++++++++++++
>  1 file changed, 28 insertions(+)
>
> diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
> index b94c36636..bf53835a0 100644
> --- a/gnu/packages/gnome.scm
> +++ b/gnu/packages/gnome.scm
> @@ -5997,3 +5997,31 @@ for process dependencies, icons for processes, the 
> ability to hide processes,
>  graphical time histories of CPU/memory/swap usage and the ability to
>  kill/reinice processes.")
>      (license license:gpl2+)))
> +
> +(define-public python-pyatspi
> +  (package
> +    (name "python-pyatspi")
> +    (version "2.24.0")
> +    (source (origin
> +              (method url-fetch)
> +              (uri (string-append
> +                    "mirror://gnome/sources/pyatspi/"
> +                    (version-major+minor version)
> +                    "/pyatspi-" version ".tar.xz"))
> +              (sha256
> +               (base32
> +                "14m6y27ziqc9f6339gjz49mlsk6mrsyg4bkj055cdzc7sfjlgvz7"))))
> +    (build-system gnu-build-system)
> +    (native-inputs
> +     `(("pkg-config" ,pkg-config)))
> +    (inputs
> +     `(("python" ,python)
> +       ("python-pygobject" ,python-pygobject)))
> +    (synopsis "Python client bindings for D-Bus AT-SPI")
> +    (home-page "http://www.linuxfoundation.org/en/Accessibility\
> +/ATK/AT-SPI/AT-SPI_on_D-Bus")

This redirects to:
https://wiki.linuxfoundation.org/accessibility/atk/at-spi/at-spi_on_d-bus

I think using string-append would look nicer than the awkward line
break, but not a strong opinion.

Other than that this series LGTM!

> +    (description
> +     "This package includes a python client library for the AT-SPI D-Bus
> +accessibility infrastructure.")
> +    (license license:lgpl2.0)
> +    (properties '((upstream-name . "pyatspi")))))
> -- 
> 2.12.2

Attachment: signature.asc
Description: PGP signature


reply via email to

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