[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
95/420: gnu: python-notebook: Update to 6.5.7.
From: |
guix-commits |
Subject: |
95/420: gnu: python-notebook: Update to 6.5.7. |
Date: |
Tue, 26 Nov 2024 16:28:39 -0500 (EST) |
sharlatan pushed a commit to branch python-team
in repository guix.
commit 6c7459e73e661ca0d2cb5caa276041124bddf1c6
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue May 7 22:21:23 2024 +0200
gnu: python-notebook: Update to 6.5.7.
* gnu/packages/python-xyz.scm (python-notebook): Update to 6.5.7.
[build-system]: Use pyproject-build-system.
[arguments]: Use #:test-flags; remove custom 'check phase; add 'pre-check
phase.
[propagated-inputs]: Add python-nbclassic.
[native-inputs]: Add python-setuptools and python-wheel.
Change-Id: I6839ac39cbdc191cd6a0ca7a25ac05ead7613ad7
---
gnu/packages/python-xyz.scm | 43 +++++++++++++++++++++++--------------------
1 file changed, 23 insertions(+), 20 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 302828684e..9ccf00490b 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -18099,17 +18099,24 @@ convert an @code{.ipynb} notebook file into various
static formats including:
(define-public python-notebook
(package
(name "python-notebook")
- (version "6.4.10")
+ (version "6.5.7")
(source (origin
(method url-fetch)
(uri (pypi-uri "notebook" version))
(sha256
(base32
- "03p976xq1l9xf4djwk0snmywd0zck3i6gjngxsl874i8qrmsf214"))))
- (build-system python-build-system)
+ "1r38fwr0r4xgkz8y27w3xyz2dk97ih5azba28jylyqxcvw8r1sq4"))))
+ (build-system pyproject-build-system)
(arguments
- `(#:phases
- (modify-phases %standard-phases
+ (list
+ #:test-flags
+ ;; TODO: This tests fails because nbconvert does not
+ ;; list "python" as a format.
+ '(list "-k" "not test_list_formats"
+ ;; These tests require a browser.
+ "--ignore=notebook/tests/selenium")
+ #:phases
+ '(modify-phases %standard-phases
(add-after 'unpack 'use-our-home-for-tests
(lambda _
;; The 'get_patch_env' function in this file reads:
@@ -18122,20 +18129,13 @@ convert an @code{.ipynb} notebook file into various
static formats including:
(("'HOME': .*," all)
(string-append "# " all "\n")))
(setenv "HOME" (getcwd))))
- (replace 'check
- (lambda* (#:key tests? inputs outputs #:allow-other-keys)
- ;; These tests require a browser.
- (delete-file-recursively "notebook/tests/selenium")
- (when tests?
- ;; Interferes with test expectations.
- (unsetenv "JUPYTER_CONFIG_PATH")
- ;; Some tests do not expect all files to be installed in the
- ;; same directory, but JUPYTER_PATH contains multiple entries.
- (unsetenv "JUPYTER_PATH")
- (invoke "pytest" "-vv"
- ;; TODO: This tests fails because nbconvert does not
- ;; list "python" as a format.
- "-k" "not test_list_formats")))))))
+ (add-before 'check 'pre-check
+ (lambda _
+ ;; Interferes with test expectations.
+ (unsetenv "JUPYTER_CONFIG_PATH")
+ ;; Some tests do not expect all files to be installed in the
+ ;; same directory, but JUPYTER_PATH contains multiple entries.
+ (unsetenv "JUPYTER_PATH"))))))
(propagated-inputs
(list python-argon2-cffi
python-ipykernel
@@ -18144,6 +18144,7 @@ convert an @code{.ipynb} notebook file into various
static formats including:
python-jupyter-client
python-jupyter-core
python-nest-asyncio
+ python-nbclassic
python-nbconvert
python-nbformat
python-prometheus-client
@@ -18158,7 +18159,9 @@ convert an @code{.ipynb} notebook file into various
static formats including:
python-pytest
python-pytest-cov
python-requests
- python-requests-unixsocket))
+ python-requests-unixsocket
+ python-setuptools
+ python-wheel))
(home-page "https://jupyter.org/")
(synopsis "Web-based notebook environment for interactive computing")
(description
- 97/420: gnu: Add python-jupyter-server-terminals., (continued)
- 97/420: gnu: Add python-jupyter-server-terminals., guix-commits, 2024/11/26
- 99/420: gnu: python-jupyter-server-mathjax: Update to 0.2.6., guix-commits, 2024/11/26
- 108/420: gnu: python-openapi-spec-validator: Update to 0.7.1., guix-commits, 2024/11/26
- 109/420: gnu: python-cattrs: Update to 23.2.3., guix-commits, 2024/11/26
- 113/420: gnu: python-jupyterlab-server: Update to 2.27.1., guix-commits, 2024/11/26
- 126/420: gnu: python-sphinx-4: Inherit from python-sphinx-5., guix-commits, 2024/11/26
- 130/420: gnu: python-nbconvert: Update to 7.16.4., guix-commits, 2024/11/26
- 132/420: gnu: Add python-comm., guix-commits, 2024/11/26
- 136/420: gnu: python-seaborn: Correct dependencies., guix-commits, 2024/11/26
- 141/420: gnu: python-mutagen: Move to pyproject-build-system., guix-commits, 2024/11/26
- 95/420: gnu: python-notebook: Update to 6.5.7.,
guix-commits <=
- 125/420: gnu: python-sphinx-5: Disable failing tests., guix-commits, 2024/11/26
- 121/420: gnu: python-rope: Update to 1.13.0., guix-commits, 2024/11/26
- 134/420: gnu: python-jupyterlab-widgets: Update to 3.0.10., guix-commits, 2024/11/26
- 127/420: gnu: python-pyls-black: Add missing input., guix-commits, 2024/11/26
- 87/420: gnu: python-jupyter-client: Set environment variable., guix-commits, 2024/11/26
- 91/420: gnu: python-trio: Use pyproject-build-system., guix-commits, 2024/11/26
- 90/420: gnu: python-nbconvert: Use pyproject-build-system., guix-commits, 2024/11/26
- 98/420: gnu: python-jupyter-server: Update to 2.14.0., guix-commits, 2024/11/26
- 106/420: gnu: Add python-pathable., guix-commits, 2024/11/26
- 112/420: gnu: python-json5: Update to 0.9.25., guix-commits, 2024/11/26