[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/09: gnu: Add emacs-ein.
From: |
guix-commits |
Subject: |
03/09: gnu: Add emacs-ein. |
Date: |
Fri, 27 Jan 2023 17:02:26 -0500 (EST) |
ngz pushed a commit to branch master
in repository guix.
commit 3ebeb5b4032e1a9896142c1a9359c73c764ff132
Author: Cayetano Santos <csantosb@inventati.org>
AuthorDate: Fri Jan 27 11:02:41 2023 +0100
gnu: Add emacs-ein.
* gnu/packages/emacs-xyz.scm (emacs-ein): New variable.
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
---
gnu/packages/emacs-xyz.scm | 53 ++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 53 insertions(+)
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm
index d7930698b0..9ad8a96286 100644
--- a/gnu/packages/emacs-xyz.scm
+++ b/gnu/packages/emacs-xyz.scm
@@ -34336,6 +34336,59 @@ notebooks")
execute code split into cells according to certain magic comments.")
(license license:gpl3+))))
+(define-public emacs-ein
+ ;; XXX: Upstream doesn't make any release, and didn't set any version.
+ (let ((commit "b2410dc96f61aa806a7934099d8f1e40c8f6ca18"))
+ (package
+ (name "emacs-ein")
+ (version "20220911")
+ (source
+ (origin
+ (method git-fetch)
+ (uri
+ (git-reference
+ (url "https://github.com/millejoh/emacs-ipython-notebook")
+ (commit commit)))
+ (sha256
+ (base32
+ "02392bxl0msda58cls0i79mzqjs73x39czx0mlb0sg2vxp84gy15"))))
+ (build-system emacs-build-system)
+ (arguments
+ (list
+ #:tests? #true
+ #:test-command
+ #~(list "emacs" "-Q" "--batch"
+ "-L" "test"
+ "--load" "test/testein-loader.el")
+ #:phases
+ #~(modify-phases %standard-phases
+ (add-after 'unpack 'move-source-files
+ (lambda _
+ (let ((el-files (find-files "./lisp" ".*\\.el$")))
+ (for-each (lambda (f)
+ (rename-file f (basename f)))
+ el-files)))))))
+ (native-inputs
+ (list emacs-f emacs-mocker))
+ (propagated-inputs
+ (list emacs-anaphora
+ emacs-dash
+ emacs-deferred
+ emacs-polymode
+ emacs-request
+ emacs-websocket
+ emacs-with-editor))
+ (home-page "https://github.com/millejoh/emacs-ipython-notebook")
+ (synopsis "Jupyter client for all languages")
+ (description
+ "The Emacs IPython Notebook (EIN) package provides a Jupyter Notebook
+client and integrated REPL (like SLIME) in Emacs. EIN improves notebook
+editing by allowing you to use Emacs. It also expose IPython features such as
+code evaluation, object inspection and code completion. These features can be
+accessed anywhere in Emacs and improve Python code editing and reading in
+general in Emacs.")
+ (license license:gpl3+))))
+
(define-public emacs-kibit-helper
(package
(name "emacs-kibit-helper")
- branch master updated (35e626f312 -> 4e4e9f56f2), guix-commits, 2023/01/27
- 03/09: gnu: Add emacs-ein.,
guix-commits <=
- 04/09: Add emacs-kodi-remote., guix-commits, 2023/01/27
- 07/09: gnu: emacs-mood-line: Update to 2.2.0., guix-commits, 2023/01/27
- 09/09: gnu: emacs-slime: Update package style., guix-commits, 2023/01/27
- 01/09: gnu: emacs-emacsql: Update upstream repository., guix-commits, 2023/01/27
- 02/09: gnu: emacs-emacsql: Run tests., guix-commits, 2023/01/27
- 05/09: gnu: emacs-bash-completion: Update to 3.1.1., guix-commits, 2023/01/27
- 06/09: gnu: emacs-emms: Update to 14., guix-commits, 2023/01/27
- 08/09: gnu: emacs-slime: Update to 2.28., guix-commits, 2023/01/27