mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-ipykernel: Move to jupyter.
* gnu/packages/python-xyz.scm (python-ipykernel): Move from here ... * gnu/packages/jupyter.scm: ... to here. * gnu/packages/engineering.scm: Add jupyter module. Change-Id: Ia1391007cd4be997aeb5c8197d4894c32340198a
This commit is contained in:
parent
0e52d86de1
commit
e24b952a35
3 changed files with 102 additions and 98 deletions
|
@ -119,8 +119,9 @@
|
||||||
#:use-module (gnu packages gtk)
|
#:use-module (gnu packages gtk)
|
||||||
#:use-module (gnu packages guile)
|
#:use-module (gnu packages guile)
|
||||||
#:use-module (gnu packages image)
|
#:use-module (gnu packages image)
|
||||||
#:use-module (gnu packages imagemagick)
|
|
||||||
#:use-module (gnu packages image-processing)
|
#:use-module (gnu packages image-processing)
|
||||||
|
#:use-module (gnu packages imagemagick)
|
||||||
|
#:use-module (gnu packages jupyter)
|
||||||
#:use-module (gnu packages kde-frameworks)
|
#:use-module (gnu packages kde-frameworks)
|
||||||
#:use-module (gnu packages libevent)
|
#:use-module (gnu packages libevent)
|
||||||
#:use-module (gnu packages libusb)
|
#:use-module (gnu packages libusb)
|
||||||
|
|
|
@ -1,8 +1,11 @@
|
||||||
;;; GNU Guix --- Functional package management for GNU
|
;;; GNU Guix --- Functional package management for GNU
|
||||||
|
;;; Copyright © 2014 Danny Milosavljevic <dannym@friendly-machines.com>
|
||||||
|
;;; Copyright © 2016, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2016, 2019, 2021-2025 Ricardo Wurmus <rekado@elephly.net>
|
;;; Copyright © 2016, 2019, 2021-2025 Ricardo Wurmus <rekado@elephly.net>
|
||||||
;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
|
;;; Copyright © 2018 Pierre-Antoine Rouby <pierre-antoine.rouby@inria.fr>
|
||||||
;;; Copyright © 2019, 2021, 2022 Ludovic Courtès <ludo@gnu.org>
|
;;; Copyright © 2019, 2021-2023 Ludovic Courtès <ludo@gnu.org>
|
||||||
;;; Copyright © 2019, 2022 Andreas Enge <andreas@enge.fr>
|
;;; Copyright © 2019, 2022 Andreas Enge <andreas@enge.fr>
|
||||||
|
;;; Copyright © 2021 Efraim Flashner <efraim@flashner.co.il>
|
||||||
;;; Copyright © 2021 Hugo Lecomte <hugo.lecomte@inria.fr>
|
;;; Copyright © 2021 Hugo Lecomte <hugo.lecomte@inria.fr>
|
||||||
;;; Copyright © 2021 Lars-Dominik Braun <lars@6xq.net>
|
;;; Copyright © 2021 Lars-Dominik Braun <lars@6xq.net>
|
||||||
;;; Copyright © 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2021 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
|
@ -98,6 +101,102 @@ explanatory text. Uses include: data cleaning and transformation, numerical
|
||||||
simulation, statistical modeling, machine learning and much more.")
|
simulation, statistical modeling, machine learning and much more.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public python-ipykernel
|
||||||
|
(package
|
||||||
|
(name "python-ipykernel")
|
||||||
|
(version "6.29.4")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (pypi-uri "ipykernel" version))
|
||||||
|
(sha256
|
||||||
|
(base32 "0p5g897pq6k9nr44ihlk4hp5s46zz8ih2xib1715lizrc000fi1x"))))
|
||||||
|
(build-system pyproject-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:modules '((guix build pyproject-build-system)
|
||||||
|
(guix build utils)
|
||||||
|
(ice-9 match))
|
||||||
|
#:test-flags
|
||||||
|
;; XXX: probably not good that this fails
|
||||||
|
'(list "-k" "not test_copy_to_globals" "-Wignore::DeprecationWarning")
|
||||||
|
#:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'relax-a-bit
|
||||||
|
(lambda _
|
||||||
|
;; I'm sure nobody will notice.
|
||||||
|
(substitute* "pyproject.toml"
|
||||||
|
(("debugpy>=1.6.5") "debugpy>=1.6.0"))))
|
||||||
|
;; The deprecation warnings break the tests.
|
||||||
|
(add-after 'unpack 'hide-deprecation-warnings
|
||||||
|
(lambda _
|
||||||
|
(substitute* "pyproject.toml"
|
||||||
|
(("\"ignore:There is no current event loop:DeprecationWarning\"" m)
|
||||||
|
(string-append m ",
|
||||||
|
\"ignore:the imp module is deprecated:DeprecationWarning\",
|
||||||
|
\"ignore:pytest-asyncio detected an unclosed event loop:DeprecationWarning\",
|
||||||
|
\"ignore:make_current is deprecated.*:DeprecationWarning\",
|
||||||
|
\"ignore:zmq.eventloop.ioloop.*:DeprecationWarning\",
|
||||||
|
\"ignore:zmq.tests.BaseZMQTestCase.*:DeprecationWarning\"")))))
|
||||||
|
(add-before 'check 'pre-check
|
||||||
|
(lambda _
|
||||||
|
;; jupyter-core demands this be set.
|
||||||
|
(setenv "JUPYTER_PLATFORM_DIRS" "1")
|
||||||
|
(setenv "HOME" "/tmp")))
|
||||||
|
(add-after 'install 'set-python-file-name
|
||||||
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
|
;; Record the absolute file name of the 'python' executable in
|
||||||
|
;; 'kernel.json'.
|
||||||
|
(substitute* (string-append #$output "/share/jupyter"
|
||||||
|
"/kernels/python3/kernel.json")
|
||||||
|
(("\"python\"")
|
||||||
|
(format #f "~s" (search-input-file inputs
|
||||||
|
"/bin/python3")))))))))
|
||||||
|
(propagated-inputs
|
||||||
|
(list python-comm
|
||||||
|
python-debugpy
|
||||||
|
python-ipython
|
||||||
|
python-jupyter-client
|
||||||
|
python-jupyter-core
|
||||||
|
python-matplotlib-inline
|
||||||
|
python-nest-asyncio
|
||||||
|
python-packaging
|
||||||
|
python-psutil
|
||||||
|
python-pyzmq
|
||||||
|
python-tornado-6
|
||||||
|
python-traitlets))
|
||||||
|
(inputs (list python)) ;for cross compilation
|
||||||
|
(native-inputs
|
||||||
|
(list python-flaky
|
||||||
|
python-hatchling
|
||||||
|
python-ipyparallel-bootstrap
|
||||||
|
python-pytest
|
||||||
|
python-pytest-asyncio
|
||||||
|
python-pytest-cov
|
||||||
|
python-pytest-timeout))
|
||||||
|
(home-page "https://ipython.org")
|
||||||
|
(synopsis "IPython Kernel for Jupyter")
|
||||||
|
(description "This package provides the IPython kernel for Jupyter.")
|
||||||
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
;; Bootstrap variant of ipykernel, which uses the bootstrap jupyter-client to
|
||||||
|
;; break the cycle between ipykernel and jupyter-client.
|
||||||
|
(define-public python-ipykernel-bootstrap
|
||||||
|
(let ((parent python-ipykernel))
|
||||||
|
(hidden-package
|
||||||
|
(package
|
||||||
|
(inherit parent)
|
||||||
|
(name "python-ipykernel-bootstrap")
|
||||||
|
(arguments (list #:tests? #f
|
||||||
|
;; The package should normally propagate ipykernel,
|
||||||
|
;; left out here to break the cycle.
|
||||||
|
#:phases #~(modify-phases %standard-phases
|
||||||
|
(delete 'sanity-check))))
|
||||||
|
(native-inputs (list python-hatchling))
|
||||||
|
(propagated-inputs
|
||||||
|
(modify-inputs (package-propagated-inputs parent)
|
||||||
|
(replace "python-jupyter-client" python-jupyter-client-bootstrap)))))))
|
||||||
|
|
||||||
(define-public python-nbclassic
|
(define-public python-nbclassic
|
||||||
(package
|
(package
|
||||||
(name "python-nbclassic")
|
(name "python-nbclassic")
|
||||||
|
|
|
@ -14157,102 +14157,6 @@ installing @code{kernelspec}s for use with Jupyter frontends.")
|
||||||
python-ipykernel-bootstrap))
|
python-ipykernel-bootstrap))
|
||||||
(properties (alist-delete 'hidden? (package-properties base))))))
|
(properties (alist-delete 'hidden? (package-properties base))))))
|
||||||
|
|
||||||
(define-public python-ipykernel
|
|
||||||
(package
|
|
||||||
(name "python-ipykernel")
|
|
||||||
(version "6.29.4")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method url-fetch)
|
|
||||||
(uri (pypi-uri "ipykernel" version))
|
|
||||||
(sha256
|
|
||||||
(base32 "0p5g897pq6k9nr44ihlk4hp5s46zz8ih2xib1715lizrc000fi1x"))))
|
|
||||||
(build-system pyproject-build-system)
|
|
||||||
(arguments
|
|
||||||
(list
|
|
||||||
#:modules '((guix build pyproject-build-system)
|
|
||||||
(guix build utils)
|
|
||||||
(ice-9 match))
|
|
||||||
#:test-flags
|
|
||||||
;; XXX: probably not good that this fails
|
|
||||||
'(list "-k" "not test_copy_to_globals" "-Wignore::DeprecationWarning")
|
|
||||||
#:phases
|
|
||||||
#~(modify-phases %standard-phases
|
|
||||||
(add-after 'unpack 'relax-a-bit
|
|
||||||
(lambda _
|
|
||||||
;; I'm sure nobody will notice.
|
|
||||||
(substitute* "pyproject.toml"
|
|
||||||
(("debugpy>=1.6.5") "debugpy>=1.6.0"))))
|
|
||||||
;; The deprecation warnings break the tests.
|
|
||||||
(add-after 'unpack 'hide-deprecation-warnings
|
|
||||||
(lambda _
|
|
||||||
(substitute* "pyproject.toml"
|
|
||||||
(("\"ignore:There is no current event loop:DeprecationWarning\"" m)
|
|
||||||
(string-append m ",
|
|
||||||
\"ignore:the imp module is deprecated:DeprecationWarning\",
|
|
||||||
\"ignore:pytest-asyncio detected an unclosed event loop:DeprecationWarning\",
|
|
||||||
\"ignore:make_current is deprecated.*:DeprecationWarning\",
|
|
||||||
\"ignore:zmq.eventloop.ioloop.*:DeprecationWarning\",
|
|
||||||
\"ignore:zmq.tests.BaseZMQTestCase.*:DeprecationWarning\"")))))
|
|
||||||
(add-before 'check 'pre-check
|
|
||||||
(lambda _
|
|
||||||
;; jupyter-core demands this be set.
|
|
||||||
(setenv "JUPYTER_PLATFORM_DIRS" "1")
|
|
||||||
(setenv "HOME" "/tmp")))
|
|
||||||
(add-after 'install 'set-python-file-name
|
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
|
||||||
;; Record the absolute file name of the 'python' executable in
|
|
||||||
;; 'kernel.json'.
|
|
||||||
(substitute* (string-append #$output "/share/jupyter"
|
|
||||||
"/kernels/python3/kernel.json")
|
|
||||||
(("\"python\"")
|
|
||||||
(format #f "~s" (search-input-file inputs
|
|
||||||
"/bin/python3")))))))))
|
|
||||||
(propagated-inputs
|
|
||||||
(list python-comm
|
|
||||||
python-debugpy
|
|
||||||
python-ipython
|
|
||||||
python-jupyter-client
|
|
||||||
python-jupyter-core
|
|
||||||
python-matplotlib-inline
|
|
||||||
python-nest-asyncio
|
|
||||||
python-packaging
|
|
||||||
python-psutil
|
|
||||||
python-pyzmq
|
|
||||||
python-tornado-6
|
|
||||||
python-traitlets))
|
|
||||||
(inputs (list python)) ;for cross compilation
|
|
||||||
(native-inputs
|
|
||||||
(list python-flaky
|
|
||||||
python-hatchling
|
|
||||||
python-ipyparallel-bootstrap
|
|
||||||
python-pytest
|
|
||||||
python-pytest-asyncio
|
|
||||||
python-pytest-cov
|
|
||||||
python-pytest-timeout))
|
|
||||||
(home-page "https://ipython.org")
|
|
||||||
(synopsis "IPython Kernel for Jupyter")
|
|
||||||
(description "This package provides the IPython kernel for Jupyter.")
|
|
||||||
(license license:bsd-3)))
|
|
||||||
|
|
||||||
;; Bootstrap variant of ipykernel, which uses the bootstrap jupyter-client to
|
|
||||||
;; break the cycle between ipykernel and jupyter-client.
|
|
||||||
(define-public python-ipykernel-bootstrap
|
|
||||||
(let ((parent python-ipykernel))
|
|
||||||
(hidden-package
|
|
||||||
(package
|
|
||||||
(inherit parent)
|
|
||||||
(name "python-ipykernel-bootstrap")
|
|
||||||
(arguments (list #:tests? #f
|
|
||||||
;; The package should normally propagate ipykernel,
|
|
||||||
;; left out here to break the cycle.
|
|
||||||
#:phases #~(modify-phases %standard-phases
|
|
||||||
(delete 'sanity-check))))
|
|
||||||
(native-inputs (list python-hatchling))
|
|
||||||
(propagated-inputs
|
|
||||||
(modify-inputs (package-propagated-inputs parent)
|
|
||||||
(replace "python-jupyter-client" python-jupyter-client-bootstrap)))))))
|
|
||||||
|
|
||||||
(define-public python-backcall
|
(define-public python-backcall
|
||||||
(package
|
(package
|
||||||
(name "python-backcall")
|
(name "python-backcall")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue