diff options
author | Brian Leung <bkleung89@gmail.com> | 2019-03-24 00:55:04 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-03-25 11:39:26 +0100 |
commit | 8dc329656be57e1e133366fb56dda4c0f3207b19 (patch) | |
tree | 96476a1608313b8c1fbc4f07306126882fd220c5 /gnu/packages/emacs-xyz.scm | |
parent | 1172d914eace72e6c45c25832ff9c977f8436261 (diff) | |
download | guix-8dc329656be57e1e133366fb56dda4c0f3207b19.tar guix-8dc329656be57e1e133366fb56dda4c0f3207b19.tar.gz |
gnu: Add emacs-company-jedi.
* gnu/packages/emacs-xyz.scm (emacs-company-jedi): New variable.
Signed-off-by: Ludovic Courtès <ludo@gnu.org>
Diffstat (limited to 'gnu/packages/emacs-xyz.scm')
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 71bdcadc53..442bc3849c 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -3312,6 +3312,29 @@ and popup menus.") the locations of docstrings, arguments, and functions.") (license license:gpl3+))) +(define-public emacs-company-jedi + (package + (name "emacs-company-jedi") + (version "0.04") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/syohex/emacs-company-jedi") + (commit version))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1ihqapp4dv92794rsgyq0rmhwika60cmradqd4bn9b72ss6plxs1")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-jedi" ,emacs-jedi) + ("emacs-company" ,emacs-company))) + (home-page "https://github.com/syohex/emacs-company-jedi") + (synopsis "Provides Python completion in @code{company-mode}") + (description + "This package provides a Company backend for Python.") + (license license:gpl3+))) + (define-public emacs-puppet-mode (let ((commit "b3ed5057166a4f49dfa9be638523a348b55a2fd2") (revision "1")) |