guix-commits
[Top][All Lists]
Advanced

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

18/19: gnu: Add python-editor.


From: Christopher Allan Webber
Subject: 18/19: gnu: Add python-editor.
Date: Mon, 15 Feb 2016 22:13:39 +0000

cwebber pushed a commit to branch wip-mediagoblin
in repository guix.

commit 554483935ac09854d890c504fe2f88a4c193b957
Author: Christopher Allan Webber <address@hidden>
Date:   Mon Feb 15 10:29:08 2016 -0800

    gnu: Add python-editor.
    
    * gnu/packages/python.scm (python-editor, python2-editor): New variables.
---
 gnu/packages/python.scm |   30 ++++++++++++++++++++++++++++++
 1 files changed, 30 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index f1cbf0c..0a03791 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -8075,3 +8075,33 @@ the 'transtab' collection by Markus Kuhn.")
     (inherit (package-with-python2
               (strip-python2-variant python-translitcodec)))
     (inputs `(("python2-setuptools" ,python2-setuptools)))))
+
+(define-public python-editor
+  (package
+  (name "python-editor")
+  (version "0.5")
+  (source
+    (origin
+      (method url-fetch)
+      (uri (pypi-uri "python-editor" version))
+      (sha256
+        (base32
+          "1ypnpgvzpkbwsg4rdvy4sy51j28b5xq9v8pnkwxncn07vqz06p7n"))))
+  (build-system python-build-system)
+  (inputs
+    `(("python-setuptools" ,python-setuptools)))
+  (home-page
+    "https://github.com/fmoo/python-editor";)
+  (synopsis
+    "Programmatically open an editor, capture the result")
+  (description
+    "python-editor is a library that provides the editor module for
+programmatically interfacing with your system's $EDITOR.")
+  (license asl2.0)
+  (properties `((python2-variant . ,(delay python2-editor))))))
+
+(define-public python2-editor
+  (package
+    (inherit (package-with-python2
+              (strip-python2-variant python-editor)))
+    (inputs `(("python2-setuptools" ,python2-setuptools)))))



reply via email to

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