guix-devel
[Top][All Lists]
Advanced

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

Re: [PATCH] gnu: Add pext.


From: ng0
Subject: Re: [PATCH] gnu: Add pext.
Date: Wed, 14 Sep 2016 23:17:47 +0000

This doesn't need installation, but it seems interesting and has an
setup.py
I don't know if it works, starting it outside of my profile it complains
about a missing module.

ng0 <address@hidden> writes:

> * gnu/packages/python.scm (pext): New variable.
> ---
>  gnu/packages/python.scm | 31 +++++++++++++++++++++++++++++++
>  1 file changed, 31 insertions(+)
>
> diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
> index e2e1ec2..fabc8dc 100644
> --- a/gnu/packages/python.scm
> +++ b/gnu/packages/python.scm
> @@ -58,6 +58,7 @@
>    #:use-module (gnu packages ghostscript)
>    #:use-module (gnu packages gl)
>    #:use-module (gnu packages glib)
> +  #:use-module (gnu packages gnome)
>    #:use-module (gnu packages gstreamer)
>    #:use-module (gnu packages gtk)
>    #:use-module (gnu packages icu4c)
> @@ -73,6 +74,7 @@
>    #:use-module (gnu packages pcre)
>    #:use-module (gnu packages perl)
>    #:use-module (gnu packages pkg-config)
> +  #:use-module (gnu packages qt)
>    #:use-module (gnu packages readline)
>    #:use-module (gnu packages sdl)
>    #:use-module (gnu packages statistics)
> @@ -633,6 +635,35 @@ using Python 2.4 or higher and provides access to the 
> Olson timezone database.")
>  (define-public python2-pytz
>    (package-with-python2 python-pytz))
>  
> +(define-public pext
> +  (let ((commit "2524dbbd0985e30ea6495e4ad0c96fc20af7bedd")
> +        (revision "1"))
> +    (package
> +      (name "pext")
> +      (version (string-append "0.0.0-" revision "." (string-take commit 7)))
> +      (source
> +       (origin
> +         (method git-fetch)
> +         (uri (git-reference
> +               (url "https://notabug.org/SylvieLorxu/Pext";)
> +               (commit commit)))
> +         (file-name (string-append name "-" version "-checkout"))
> +         (sha256
> +          (base32
> +           "05dc36q3w3kwn6lkh5lyg0lckn0nk0xg377mxb1m2rd23f6vl00z"))))
> +      (build-system python-build-system)
> +      (inputs
> +       `(("libnotify" ,libnotify)
> +         ("python-pyqt" ,python-pyqt)
> +         ("qtquickcontrols" ,qtquickcontrols)
> +         ("xclip" ,xclip)))
> +      (home-page "https://pext.github.io/";)
> +      (synopsis "Python-based extendable tool")
> +      (description
> +       "Pext stands for Python-based extendable tool.  Its behaviour is 
> decided
> +by modules.  Pext provides a simple window with a search bar, allowing 
> modules
> +to define what data is shown and how it is manipulated.")
> +      (license license:gpl3+))))
>  
>  (define-public python-babel
>    (package
> -- 
> 2.10.0
>
>

-- 
              ng0



reply via email to

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