guix-devel
[Top][All Lists]
Advanced

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

Re: [PATCH 18/18] gnu: Add python-editor.


From: Christopher Allan Webber
Subject: Re: [PATCH 18/18] gnu: Add python-editor.
Date: Fri, 19 Feb 2016 18:37:34 -0800

Updated.

>From 1e6e7338e0ddf9fe1e590da9a96e5afa13cf0040 Mon Sep 17 00:00:00 2001
From: Christopher Allan Webber <address@hidden>
Date: Mon, 15 Feb 2016 10:29:08 -0800
Subject: [PATCH 17/18] gnu: Add python-editor.

* gnu/packages/python.scm (python-editor, python2-editor): New variables.
---
 gnu/packages/python.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index ab7b276..916a1aa 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -8077,3 +8077,31 @@ ISO 8859, etc.).")
     (inherit (package-with-python2
               (strip-python2-variant python-translitcodec)))
     (native-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)
+  (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)))))
-- 
2.6.3


reply via email to

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