[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
32/361: gnu: python-ipython: Update to 8.22.1.
From: |
guix-commits |
Subject: |
32/361: gnu: python-ipython: Update to 8.22.1. |
Date: |
Fri, 22 Nov 2024 06:00:06 -0500 (EST) |
andreas pushed a commit to branch python-team
in repository guix.
commit 3376ed70319c1a99e72195d97aea625b8d4946e7
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Feb 27 16:30:26 2024 +0100
gnu: python-ipython: Update to 8.22.1.
* gnu/packages/python-xyz.scm (python-ipython): Update to 8.22.1.
[source]: Use git-fetch.
[build-system]: Use pyproject-build-system.
[arguments]: Disable tests that need git; respect test flags in custom check
phase.
[propagated-inputs]: Remove python-backcall, python-jinja2,
python-jsonschema,
python-matplotlib, python-mistune, python-nbformat, python-numpy,
python-numpydoc, python-pickleshare, python-pyzmq, python-simplegeneric, and
python-terminado; add python-colorama, python-exceptiongroup, and
python-typing-extensions.
[native-inputs]: Remove graphviz, pkg-config, and python-requests; add
python-curio, python-matplotlib, python-nbformat, python-numpy,
python-pandas,
python-pickleshare, python-pytest-asyncio, python-setuptools,
python-testpath,
python-wheel.
Change-Id: Iecdbb03b0f81ef0d4bf84187ef9fcd7ff744f3ab
---
gnu/packages/python-xyz.scm | 59 ++++++++++++++++++++++++---------------------
1 file changed, 32 insertions(+), 27 deletions(-)
diff --git a/gnu/packages/python-xyz.scm b/gnu/packages/python-xyz.scm
index 2e96be7cc6..aac16c9e3d 100644
--- a/gnu/packages/python-xyz.scm
+++ b/gnu/packages/python-xyz.scm
@@ -13005,17 +13005,25 @@ than the default.")
(define-public python-ipython
(package
(name "python-ipython")
- (version "8.5.0")
+ (version "8.22.1")
(source
(origin
- (method url-fetch)
- (uri (pypi-uri "ipython" version ".tar.gz"))
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ipython/ipython")
+ (commit version)))
+ (file-name (git-file-name name version))
(sha256
- (base32 "114z175hnv1lgprj06zfcil7lkq013rggjbrc43gsxkmv1fdyyq9"))))
- (build-system python-build-system)
+ (base32 "1gpy8842sdq4wk8h5xns1k7k75wb31vvv4ycjglx4ri5kwwz44aa"))))
+ (build-system pyproject-build-system)
(arguments
- `(#:phases
- (modify-phases %standard-phases
+ (list
+ #:test-flags
+ '(list "-k"
+ ;; These need git.
+ "not test_json_getsysinfo and not IPython.utils.sysinfo.sys_info")
+ #:phases
+ '(modify-phases %standard-phases
(add-after 'unpack 'make-docs-reproducible
(lambda _
(substitute* "IPython/sphinxext/ipython_directive.py"
@@ -13023,39 +13031,36 @@ than the default.")
((".*datetime.datetime.now\\(\\)") "")
(("%timeit") "# %timeit"))))
(replace 'check
- (lambda* (#:key inputs outputs tests? #:allow-other-keys)
+ (lambda* (#:key tests? test-flags #:allow-other-keys)
(when tests?
(setenv "HOME" "/tmp/") ;required by some tests
- (invoke "python" "-m" "pytest" "-vv")))))))
+ (apply invoke "python" "-m" "pytest" "-vv"
+ test-flags)))))))
(inputs (list readline which))
(propagated-inputs
- (list python-backcall
+ (list python-colorama
python-decorator
+ python-exceptiongroup
python-jedi
- python-jinja2
- python-jsonschema
- python-matplotlib
python-matplotlib-inline
- python-mistune
- python-nbformat
- python-numpy
- python-numpydoc
python-pexpect
- python-pickleshare
python-prompt-toolkit
python-pygments
- python-pyzmq
- python-simplegeneric
python-stack-data
- python-terminado
- python-traitlets))
+ python-traitlets
+ python-typing-extensions))
(native-inputs
- (list graphviz
- pkg-config
- ;; For tests.
+ (list python-curio
+ python-matplotlib
+ python-nbformat
+ python-numpy
+ python-pandas
+ python-pickleshare
python-pytest
- python-requests
- python-testpath))
+ python-pytest-asyncio
+ python-setuptools
+ python-testpath
+ python-wheel))
(home-page "https://ipython.org")
(synopsis "IPython is a tool for interactive computing in Python")
(description
- 50/361: gnu: python-billiard: Add missing inputs., (continued)
- 50/361: gnu: python-billiard: Add missing inputs., guix-commits, 2024/11/22
- 03/361: gnu: python-sphinx-alabaster-theme: Update to 0.7.13., guix-commits, 2024/11/22
- 08/361: gnu: sssd: Import ensure-no-mtimes-pre-1980., guix-commits, 2024/11/22
- 06/361: build-system/python: Ignore symlinks when changing mtime., guix-commits, 2024/11/22
- 16/361: gnu: Add missing import (again)., guix-commits, 2024/11/22
- 18/361: gnu: python-typing-extensions: Update to 4.10.0., guix-commits, 2024/11/22
- 27/361: gnu: python-lightning-cloud: Disable tests., guix-commits, 2024/11/22
- 26/361: gnu: python-myst-parser: Relax some requirements., guix-commits, 2024/11/22
- 25/361: gnu: python-textual: Update to 0.50.1., guix-commits, 2024/11/22
- 29/361: gnu: python-argcomplete: Update to 3.2.2., guix-commits, 2024/11/22
- 32/361: gnu: python-ipython: Update to 8.22.1.,
guix-commits <=
- 36/361: gnu: python-readme-renderer: Adjust package style., guix-commits, 2024/11/22
- 38/361: gnu: python-argcomplete: Add missing input., guix-commits, 2024/11/22
- 41/361: gnu: python-pycurl: Add missing inputs., guix-commits, 2024/11/22
- 45/361: gnu: python-mistletoe: Add missing inputs., guix-commits, 2024/11/22
- 40/361: gnu: java-testng: Disable one test., guix-commits, 2024/11/22
- 39/361: gnu: java-testng: Drop input labels., guix-commits, 2024/11/22
- 42/361: gnu: python-pynacl: Add missing inputs., guix-commits, 2024/11/22
- 51/361: gnu: python-partd: Add missing input., guix-commits, 2024/11/22
- 55/361: gnu: python-pyls-black: Add missing inputs., guix-commits, 2024/11/22
- 56/361: guix: toml: Fix parsing empty strings in arrays., guix-commits, 2024/11/22