diff options
author | Joseph LaFreniere <joseph@lafreniere.xyz> | 2020-10-13 09:21:56 +0200 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2020-10-13 09:21:56 +0200 |
commit | ddd61916ce864b473a115d39d73b233978914c3d (patch) | |
tree | 9c20caa55390807b4686fca297d11a11603a94e7 /gnu | |
parent | ec82d58526c27a9ca26f6c5e39cec90a48cbc1cc (diff) | |
download | guix-ddd61916ce864b473a115d39d73b233978914c3d.tar guix-ddd61916ce864b473a115d39d73b233978914c3d.tar.gz |
gnu: Add emacs-py-isort.
* gnu/packages/emacs-xyz.scm (emacs-py-isort): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-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 0c49d72cc2..cc97e051d0 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -5676,6 +5676,31 @@ and popup menus.") buffers, respectively.") (license license:bsd-3))) +(define-public emacs-py-isort + (package + (name "emacs-py-isort") + (version "2016.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/paetzke/py-isort.el") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "08i55gv392wc12x8v3dca0dmz8a8p9ljsqhyajsb6qv1k120wqhx")))) + (build-system emacs-build-system) + (arguments + `(#:tests? #f)) ;tests fail with "emacs: standard input is not a tty" + (propagated-inputs + `(("python-isort" ,python-isort))) + (home-page "https://github.com/paetzke/py-isort.el") + (synopsis "Sort the imports in Python buffers") + (description + "This package provides commands and a minor mode to sort Python imports +using @code{python-isort}.") + (license license:gpl3+))) + (define-public emacs-python-environment (package (name "emacs-python-environment") |