diff options
author | Ludovic Courtès <ludovic.courtes@inria.fr> | 2024-11-14 15:38:29 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-11-14 15:38:29 +0100 |
commit | 75fc77dc9981e5c3e0e676d3428d139f591f3eb8 (patch) | |
tree | 0283a135fe262869143ae0ccd2ccbe2f16621bf3 /gnu/packages | |
parent | 2ac93b9b5c9b276b0fe22e9ebb2e98f1510f740a (diff) | |
download | guix-75fc77dc9981e5c3e0e676d3428d139f591f3eb8.tar.gz guix-75fc77dc9981e5c3e0e676d3428d139f591f3eb8.zip |
gnu: guix-jupyter: Update to 0.3.0.
* gnu/packages/package-management.scm (guix-jupyter): Update to 0.3.0.
[arguments]: Remove ‘define-home’ phase, which is no longer needed.
Change-Id: I18e0897caf6e9ad0bc7d410f2011fad031cecb7e
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/package-management.scm | 17 |
1 files changed, 4 insertions, 13 deletions
diff --git a/gnu/packages/package-management.scm b/gnu/packages/package-management.scm index 864b868316..e968043d7c 100644 --- a/gnu/packages/package-management.scm +++ b/gnu/packages/package-management.scm @@ -1709,15 +1709,15 @@ This package just includes the agent component."))) (define-public guix-jupyter (package (name "guix-jupyter") - (version "0.2.2") - (home-page "https://gitlab.inria.fr/guix-hpc/guix-kernel") + (version "0.3.0") + (home-page "https://codeberg.org/guix-science/guix-jupyter") (source (origin (method git-fetch) (uri (git-reference (url home-page) (commit (string-append "v" version)))) (sha256 (base32 - "17m6970wnvwlbarq4gxz5bakhzyhq5ch8qd8jw55ydccpv6473kq")) + "0cvjxv60la2bqmwb7m2bfpvjy8hx1hmjk2qy9wfzaffcabgr0x44")) (file-name (string-append "guix-jupyter-" version "-checkout")))) (build-system gnu-build-system) (arguments @@ -1764,16 +1764,7 @@ This package just includes the agent component."))) "\",\n\t\t\"")) (("guix-jupyter-kernel.scm") (string-append out "/share/guile/site/" effective - "/guix-jupyter-kernel.scm")))))) - (add-before 'check 'define-home - (lambda _ - ;; IPython goes awry when HOME points to a non-existent - ;; directory: - ;; - ;; IPython/paths.py:70: UserWarning: IPython parent '/homeless-shelter' is not a writable location, using a temp directory. - ;; - ;; This in turn leads to test failures, so define HOME. - (setenv "HOME" (getcwd))))))) + "/guix-jupyter-kernel.scm"))))))))) (native-inputs (list autoconf automake |