[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
95/361: gnu: python-notebook: Update to 6.5.7.
From: |
guix-commits |
Subject: |
95/361: gnu: python-notebook: Update to 6.5.7. |
Date: |
Fri, 22 Nov 2024 06:00:19 -0500 (EST) |
andreas pushed a commit to branch python-team
in repository guix.
commit 6b5f226d0a93ad3b7606f01527768467a05ecfd3
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 03e7e610a8..d7a1a59ec5 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
- 132/361: gnu: Add python-comm., (continued)
- 132/361: gnu: Add python-comm., guix-commits, 2024/11/22
- 152/361: gnu: qtile: Improve package style., guix-commits, 2024/11/22
- 22/361: gnu: python-mdit-py-plugins: Update to 0.4.0., guix-commits, 2024/11/22
- 17/361: gnu: python-sphinx: Update to 6.2.1., guix-commits, 2024/11/22
- 21/361: gnu: python-markdown-it-py: Update to 3.0.0., guix-commits, 2024/11/22
- 57/361: gnu: snakemake-6: Add Setuptools and Wheel., guix-commits, 2024/11/22
- 70/361: gnu: Add python-fqdn., guix-commits, 2024/11/22
- 71/361: gnu: Add python-overrides., guix-commits, 2024/11/22
- 61/361: gnu: python-nbclient: Add Setuptools and Wheel., guix-commits, 2024/11/22
- 82/361: gnu: python-prometheus-client: Update to 0.20.0., guix-commits, 2024/11/22
- 95/361: gnu: python-notebook: Update to 6.5.7.,
guix-commits <=
- 99/361: gnu: python-jupyter-server-mathjax: Update to 0.2.6., guix-commits, 2024/11/22
- 109/361: gnu: python-cattrs: Update to 23.2.3., guix-commits, 2024/11/22
- 120/361: gnu: python-platformdirs: Update to 4.2.1., guix-commits, 2024/11/22
- 125/361: gnu: python-sphinx-5: Disable failing tests., guix-commits, 2024/11/22
- 151/361: gnu: qtile: Update to 0.23.0., guix-commits, 2024/11/22
- 180/361: gnu: python-pytest-toolbox: Move to pyproject-build-system., guix-commits, 2024/11/22
- 158/361: gnu: python-scikit-rf: Fix tests., guix-commits, 2024/11/22
- 189/361: gnu: Add ghc-xcb-types., guix-commits, 2024/11/22
- 188/361: gnu: python-nbstripout: Move to pyproject-build-system., guix-commits, 2024/11/22
- 192/361: gnu: python-pint: Disable benchmark tests., guix-commits, 2024/11/22