summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/ipython
diff options
context:
space:
mode:
authornatsukium <tomoya.otabi@gmail.com>2024-08-21 22:49:38 +0900
committernatsukium <tomoya.otabi@gmail.com>2024-08-21 23:47:34 +0900
commit87f3fbade567e21d023651d82f8454a2de209ddc (patch)
tree7ae4fafc131ed3ba289f1767ea22c7014c4942e8 /pkgs/development/python-modules/ipython
parent575514d0f3b6b53c98e33bf215c502862f9ad4c5 (diff)
python312Packages.ipython: 8.25.0 -> 8.26.0
Changelog: https://github.com/ipython/ipython/blob/8.26.0/docs/source/whatsnew/version8.rst
Diffstat (limited to 'pkgs/development/python-modules/ipython')
-rw-r--r--pkgs/development/python-modules/ipython/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/python-modules/ipython/default.nix b/pkgs/development/python-modules/ipython/default.nix
index af34d35c647d..982234507d02 100644
--- a/pkgs/development/python-modules/ipython/default.nix
+++ b/pkgs/development/python-modules/ipython/default.nix
@@ -36,19 +36,19 @@
# Test dependencies
pickleshare,
pytest-asyncio,
- pytest7CheckHook,
+ pytestCheckHook,
testpath,
}:
buildPythonPackage rec {
pname = "ipython";
- version = "8.25.0";
+ version = "8.26.0";
pyproject = true;
disabled = pythonOlder "3.10";
src = fetchPypi {
inherit pname version;
- hash = "sha256-xu1yahQLbnJbkRUo+AQ5xTT6yRUkavPvw5RAprD51xY=";
+ hash = "sha256-HOwPu6hASvE/rOvoPQRDanQ0x0AOWfR6z0Z8ZKvQlWw=";
};
build-system = [ setuptools ];
@@ -87,13 +87,13 @@ buildPythonPackage rec {
# doctests try to fetch an image from the internet
substituteInPlace pyproject.toml \
- --replace '"--ipdoctest-modules",' '"--ipdoctest-modules", "--ignore=IPython/core/display.py",'
+ --replace-fail '"--ipdoctest-modules",' '"--ipdoctest-modules", "--ignore=IPython/core/display.py",'
'';
nativeCheckInputs = [
pickleshare
pytest-asyncio
- pytest7CheckHook
+ pytestCheckHook
testpath
];