all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add pext.
@ 2016-09-14 23:15 ng0
  2016-09-14 23:17 ` ng0
  0 siblings, 1 reply; 3+ messages in thread
From: ng0 @ 2016-09-14 23:15 UTC (permalink / raw)
  To: guix-devel

* 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

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-09-23 23:05 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-14 23:15 [PATCH] gnu: Add pext ng0
2016-09-14 23:17 ` ng0
2016-09-23 23:05   ` Leo Famulari

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.