diff options
author | Brian Leung <bkleung89@gmail.com> | 2019-04-04 06:16:49 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-04-11 13:46:39 +0200 |
commit | 2feaffb17cc3dbf6fe756c38362069328a9c76d8 (patch) | |
tree | 9e62c43a269564a977b20567c70d7e2f273a8368 | |
parent | 91af509751927e48e3e4735cbe6b5694b92bcd9c (diff) | |
download | patches-2feaffb17cc3dbf6fe756c38362069328a9c76d8.tar patches-2feaffb17cc3dbf6fe756c38362069328a9c76d8.tar.gz |
gnu: Add emacs-evil-text-object-python.
* gnu/packages/emacs-xyz.scm (emacs-evil-text-object-python): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 5f137cd95d..0b1f801f85 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -5708,6 +5708,31 @@ blocks having the same or higher indentation, including or excluding surrounding lines.") (license license:gpl2+)))) +(define-public emacs-evil-text-object-python + (let ((commit "9a064fe6475429145cbcc3b270fcc963b67adb15") + (version "1.0.1") + (revision "1")) + (package + (name "emacs-evil-text-object-python") + (version (git-version version revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/wbolster/evil-text-object-python") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "074zpm6mmr1wfl6d5xdf8jk1fs4ccpbzf4ahhkwga9g71xiplszv")))) + (build-system emacs-build-system) + (propagated-inputs `(("emacs-evil" ,emacs-evil))) + (home-page "https://github.com/wbolster/evil-text-object-python") + (synopsis "Text objects for Python") + (description + "This package provides @code{evil-mode} text objects for Python.") + (license license:gpl3+)))) + (define-public emacs-monroe (package (name "emacs-monroe") |