[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/07: gnu: Add python-readlike.
From: |
Tobias Geerinckx-Rice |
Subject: |
04/07: gnu: Add python-readlike. |
Date: |
Wed, 24 Oct 2018 16:55:25 -0400 (EDT) |
nckx pushed a commit to branch master
in repository guix.
commit d4eb8a21a6bd5df9126290208d275c94d65c95e3
Author: Tobias Geerinckx-Rice <address@hidden>
Date: Mon Oct 22 17:58:02 2018 +0200
gnu: Add python-readlike.
* gnu/packages/python.scm (python-readlike, python2-readlike):
New public variables.
---
gnu/packages/python.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/python.scm b/gnu/packages/python.scm
index dee7d9a..d9f3ebf 100644
--- a/gnu/packages/python.scm
+++ b/gnu/packages/python.scm
@@ -14524,3 +14524,30 @@ can be retrieved in constant time. Some of the
terminology is inspired by
LISP. It is possible to create an improper list by creating a @code{Pair}
with a non-list @code{cdr}.")
(license license:gpl3+)))
+
+(define-public python-readlike
+ (package
+ (name "python-readlike")
+ (version "0.1.3")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (pypi-uri "readlike" version))
+ (sha256
+ (base32 "027w8fvi50ksl57q0a7kb5zvmq8jxaawnviib1jdqw0p3igvm1j4"))))
+ (build-system python-build-system)
+ (home-page "https://github.com/jangler/readlike")
+ (synopsis "GNU Readline-like line editing module")
+ (description
+ "This Python module provides line editing functions similar to the default
+Emacs-style ones of GNU Readline. Unlike the Python standard library's
address@hidden package, this one allows access to those capabilties in settings
+outside of a standard command-line interface. It is especially well-suited to
+interfacing with Urwid, due to a shared syntax for describing key inputs.
+
+Currently, all stateless Readline commands are implemented. Yanking and
history
+are not supported.")
+ (license license:expat)))
+
+(define-public python2-readlike
+ (package-with-python2 python-readlike))
- branch master updated (c1144c7 -> f65fdd9), Tobias Geerinckx-Rice, 2018/10/24
- 02/07: gnu: iproute2: Update to 4.19.0., Tobias Geerinckx-Rice, 2018/10/24
- 04/07: gnu: Add python-readlike.,
Tobias Geerinckx-Rice <=
- 03/07: gnu: minixml: Update to 2.12., Tobias Geerinckx-Rice, 2018/10/24
- 06/07: gnu: Add python-mechanicalsoup., Tobias Geerinckx-Rice, 2018/10/24
- 01/07: gnu: loksh: Use PREFIX., Tobias Geerinckx-Rice, 2018/10/24
- 05/07: gnu: Add python-reparser., Tobias Geerinckx-Rice, 2018/10/24
- 07/07: gnu: Add hangups., Tobias Geerinckx-Rice, 2018/10/24