From 87f3fbade567e21d023651d82f8454a2de209ddc Mon Sep 17 00:00:00 2001 From: natsukium Date: Wed, 21 Aug 2024 22:49:38 +0900 Subject: [PATCH 1/2] python312Packages.ipython: 8.25.0 -> 8.26.0 Changelog: https://github.com/ipython/ipython/blob/8.26.0/docs/source/whatsnew/version8.rst --- pkgs/development/python-modules/ipython/default.nix | 10 +++++----- 1 file 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 ]; From 881fc844c4170099862054f0d5a854a081d275dd Mon Sep 17 00:00:00 2001 From: natsukium Date: Wed, 21 Aug 2024 22:58:01 +0900 Subject: [PATCH 2/2] python312Packages.ipython: add teams.jupyter.members as maintainer --- pkgs/development/python-modules/ipython/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/ipython/default.nix b/pkgs/development/python-modules/ipython/default.nix index 982234507d02..e13f14a2411e 100644 --- a/pkgs/development/python-modules/ipython/default.nix +++ b/pkgs/development/python-modules/ipython/default.nix @@ -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; }; }