Merge pull request #336336 from natsukium/ipython/update

python312Packages.ipython: 8.25.0 -> 8.26.0
This commit is contained in:
OTABI Tomoya
2024-08-22 12:06:24 +09:00
committed by GitHub
@@ -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
];
@@ -117,6 +117,6 @@ buildPythonPackage rec {
homepage = "https://ipython.org/";
changelog = "https://github.com/ipython/ipython/blob/${version}/docs/source/whatsnew/version${lib.versions.major version}.rst";
license = licenses.bsd3;
maintainers = with maintainers; [ bjornfor ];
maintainers = with maintainers; [ bjornfor ] ++ teams.jupyter.members;
};
}