me
/
guix
Archived
1
0
Fork 0

gnu: emacs-jupyter: Update to 1.0-1.f97f4b5.

* gnu/packages/emacs-xyz.scm (emacs-jupyter): Update to 1.0-1.f97f4b5.

This bump is necessary to fix build, broken since last EMACS-ZMQ update, in
commit 57b37bc399.

Change-Id: I4cf1513cd5d99a77e0f3c6d47ed84d9ae2d37976
master
Nicolas Goaziou 2024-07-21 20:41:59 +02:00
parent 0f0a82fa13
commit b204362768
No known key found for this signature in database
GPG Key ID: DA00B4F048E92F2D
1 changed files with 25 additions and 23 deletions

View File

@ -22941,32 +22941,34 @@ the pipeline, featuring the support for running @code{emacsclient}.")
(license license:gpl3+)))
(define-public emacs-jupyter
(package
(name "emacs-jupyter")
(version "1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/nnicandro/emacs-jupyter")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0rf8d83bzc05v0w7zpqwcd89cdvrxwzpyf55vmmzj5j755bgxvhs"))))
(build-system emacs-build-system)
(propagated-inputs
(list emacs-company ;optional
emacs-markdown-mode ;optional
emacs-simple-httpd
emacs-websocket
emacs-zmq))
(home-page "https://github.com/nnicandro/emacs-jupyter")
(synopsis "Emacs interface to communicate with Jupyter kernels")
(description "This package provides an Emacs interface to communicate with
(let ((commit "f97f4b5d8c83e0b901020f835183dde8a2bf649e")
(revision "1"))
(package
(name "emacs-jupyter")
(version (git-version "1.0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/nnicandro/emacs-jupyter")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32 "0jmhh9ncnf4ai8rr2g474n6dv9m7v983s2w0smy0h7l07sp43klq"))))
(build-system emacs-build-system)
(propagated-inputs
(list emacs-company ;optional
emacs-markdown-mode ;optional
emacs-simple-httpd
emacs-websocket
emacs-zmq))
(home-page "https://github.com/nnicandro/emacs-jupyter")
(synopsis "Emacs interface to communicate with Jupyter kernels")
(description "This package provides an Emacs interface to communicate with
Jupyter kernels. It provides REPL and Org mode source code block frontends to
Jupyter kernels and kernel interactions integrated with Emacs' built-in
features.")
(license license:gpl3+)))
(license license:gpl3+))))
(define-public emacs-hcl-mode
(package