python312Packages.ipython: 8.25.0 -> 8.26.0

Changelog: https://github.com/ipython/ipython/blob/8.26.0/docs/source/whatsnew/version8.rst
This commit is contained in:
natsukium
2024-08-21 23:47:34 +09:00
parent 575514d0f3
commit 87f3fbade5
@@ -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
];