mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: python-jupyter-core: Update to 5.7.2.
* gnu/packages/python-xyz.scm (python-jupyter-core): Update to 5.7.2. [native-inputs]: Add python-hatchling, python-pre-commit, python-pytest-cov, and python-pytest-timeout. [propagated-inputs]: Add python-platformdirs. [build-system]: Use pyproject-build-system. [arguments]: Use #:test-flags instead of custom 'check phase; remove phase 'patch-testsuite; disable a few tests; add phase 'pre-check. Change-Id: I5f415688d17de1c6b4581a0b339359f7efee68c5
This commit is contained in:
parent
69d1d74c9d
commit
a318906821
1 changed files with 34 additions and 31 deletions
|
@ -12710,39 +12710,38 @@ container data structures in Python).")
|
|||
(define-public python-jupyter-core
|
||||
(package
|
||||
(name "python-jupyter-core")
|
||||
(version "4.10.0")
|
||||
(version "5.7.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append (pypi-uri "jupyter_core" version)))
|
||||
(sha256
|
||||
(base32
|
||||
"1v0s31rmwppdmww135hif03hy164j9kimirh24kxfcbvdfql9pm6"))))
|
||||
(build-system python-build-system)
|
||||
"1n9nyp1skljbbkqp4j7mnihnyp83j9rxm5h4hfn33d7npcr8spxa"))))
|
||||
(build-system pyproject-build-system)
|
||||
(arguments
|
||||
`(#:phases
|
||||
(modify-phases %standard-phases
|
||||
(replace 'check
|
||||
(lambda* (#:key tests? #:allow-other-keys)
|
||||
(when tests?
|
||||
;; Some tests write to $HOME.
|
||||
(setenv "HOME" "/tmp")
|
||||
(invoke "pytest" "-vv"
|
||||
"-k"
|
||||
(list
|
||||
#:test-flags
|
||||
'(list "-k"
|
||||
(string-append
|
||||
;; XXX: These tests fail with "ModuleNotFoundError: No
|
||||
;; module named 'jupyter_core'".
|
||||
"not test_argv0 and not test_path_priority "
|
||||
"and not test_not_on_path")))))
|
||||
(add-after 'unpack 'patch-testsuite
|
||||
(lambda _
|
||||
;; test_not_on_path() and test_path_priority() try to run a test
|
||||
;; that loads jupyter_core, so we need GUIX_PYTHONPATH
|
||||
(substitute* "jupyter_core/tests/test_command.py"
|
||||
(("env = \\{'PATH': ''\\}")
|
||||
"env = {'PATH': '', 'PYTHONPATH': os.environ['GUIX_PYTHONPATH']}")
|
||||
(("env = \\{'PATH': str\\(b\\)\\}")
|
||||
"env = {'PATH': str(b), 'PYTHONPATH': os.environ['GUIX_PYTHONPATH']}"))))
|
||||
"not test_argv0"
|
||||
" and not test_path_priority "
|
||||
" and not test_not_on_path"
|
||||
|
||||
;; These fail with: An incompatible sibling of 'AsyncTornadoApp'
|
||||
;; is already instantiated as singleton: SyncTornadoApp
|
||||
" and not test_async_app"
|
||||
" and not test_async_tornado_app"
|
||||
|
||||
;; Fails with a deprecation warning
|
||||
" and not test_sync_tornado_run"))
|
||||
#:phases
|
||||
'(modify-phases %standard-phases
|
||||
(add-before 'check 'pre-check
|
||||
;; Some tests write to $HOME.
|
||||
(lambda _ (setenv "HOME" "/tmp")))
|
||||
;; Migration is running whenever etc/jupyter exists, but the
|
||||
;; Guix-managed directory will never contain any migratable IPython
|
||||
;; config files and cannot be written to anyway, so just pretend we
|
||||
|
@ -12754,8 +12753,12 @@ container data structures in Python).")
|
|||
(string-append
|
||||
(assoc-ref outputs "out")
|
||||
"/etc/jupyter/migrated")))))))
|
||||
(propagated-inputs (list python-traitlets))
|
||||
(native-inputs (list python-pytest))
|
||||
(propagated-inputs (list python-platformdirs python-traitlets))
|
||||
(native-inputs (list python-hatchling
|
||||
python-pre-commit
|
||||
python-pytest
|
||||
python-pytest-cov
|
||||
python-pytest-timeout))
|
||||
;; This package provides the `jupyter` binary and thus also exports the
|
||||
;; search paths.
|
||||
(native-search-paths
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue