mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: Add python-comm.
* gnu/packages/jupyter.scm (python-comm): New variable. Change-Id: I1bed7b6f54e63db6f47cdbaccd816c56f06045f8 Signed-off-by: Andrew Tropin <andrew@trop.in>
This commit is contained in:
parent
b12ab191b8
commit
d6db4d16bd
1 changed files with 27 additions and 0 deletions
|
@ -4,6 +4,7 @@
|
||||||
;;; Copyright © 2021 Hugo Lecomte <hugo.lecomte@inria.fr>
|
;;; Copyright © 2021 Hugo Lecomte <hugo.lecomte@inria.fr>
|
||||||
;;; Copyright © 2022 Marius Bakke <marius@gnu.org>
|
;;; Copyright © 2022 Marius Bakke <marius@gnu.org>
|
||||||
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
;;; Copyright © 2022 Maxim Cournoyer <maxim.cournoyer@gmail.com>
|
||||||
|
;;; Copyright © 2024 Sharlatan Hellseher <sharlatanus@gmail.com>
|
||||||
;;;
|
;;;
|
||||||
;;; This file is part of GNU Guix.
|
;;; This file is part of GNU Guix.
|
||||||
;;;
|
;;;
|
||||||
|
@ -491,6 +492,32 @@ (define-public python-jupyter-server-mathjax
|
||||||
Mathjax, the JavaScript display engine for mathematics.")
|
Mathjax, the JavaScript display engine for mathematics.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public python-comm
|
||||||
|
(package
|
||||||
|
(name "python-comm")
|
||||||
|
(version "0.2.2")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch) ; no tests data in PyPi package
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/ipython/comm")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "18xsbpd8dgcfbc51xl59nlwaq7jnyzvgzjfj6psscv71894x4lg7"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(native-inputs
|
||||||
|
(list python-hatchling python-pytest python-setuptools-scm))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-traitlets))
|
||||||
|
(home-page "https://github.com/ipython/comm")
|
||||||
|
(synopsis "Python Comm implementation for the Jupyter kernel protocol")
|
||||||
|
(description
|
||||||
|
"This package provides a way to register a Kernel Comm implementation, as
|
||||||
|
per the Jupyter kernel protocol. It also provides a base Comm implementation
|
||||||
|
and a default CommManager that can be used.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(define-public python-nbclient
|
(define-public python-nbclient
|
||||||
(package
|
(package
|
||||||
(name "python-nbclient")
|
(name "python-nbclient")
|
||||||
|
|
Loading…
Reference in a new issue