diff options
author | Rostislav Svoboda <rostislav.svoboda@gmail.com> | 2024-10-27 11:14:46 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2024-10-27 11:14:46 +0100 |
commit | 6d334173a30579f04cac37458f8c696b51e2ecba (patch) | |
tree | 57cc56b66a917ec8cecc404f517825fb31fe392d | |
parent | 0e9a29eda83c8dc26e0c43110fd188376c176fde (diff) | |
download | guix-6d334173a30579f04cac37458f8c696b51e2ecba.tar guix-6d334173a30579f04cac37458f8c696b51e2ecba.tar.gz |
gnu: Add emacs-pythonic.
* gnu/packages/emacs-xyz.scm (emacs-pythonic): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Change-Id: Ie8f1322fbf8230d4b5ca258cb7ccacee1daa231a
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index 9d75334988..233d2dae50 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -11276,6 +11276,32 @@ using @code{python-isort}.") "This package permits automated installation of tools written in Python.") (license license:gpl3+))) +(define-public emacs-pythonic + (let ((commit "c1e5643e044f1faaf6ecfadc719b981c048aeb79") + (revision "0")) + (package + (name "emacs-pythonic") + (version (git-version "0.2" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pythonic-emacs/pythonic") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1bl2ds73g59v8q90kmjpchvzqrjdli3hmigzw5gv2yl548p7yppb")))) + (build-system emacs-build-system) + (propagated-inputs (list emacs-f emacs-s emacs-tramp)) + (home-page "https://github.com/pythonic-emacs/pythonic") + (synopsis "Utility functions for writing Pythonic in Emacs") + (description + "The Pythonic Emacs package provides function for convenient running +Python on different platforms on local and remote hosts including Docker +containers and Vagrant virtual machines. To use Pythonic with Docker you need +to install Docker Tramp Emacs package.") + (license license:gpl3+)))) + (define-public emacs-jedi (package (name "emacs-jedi") |