Merge pull request #253281 from natsukium/jupyter-console/update

python310Packages.jupyter-console: 6.6.1 -> 6.6.3; rename from jupyter_console

authored by

OTABI Tomoya and committed by
GitHub
2a7b1b60 147d81d1

+12 -9
+2 -2
pkgs/development/python-modules/ilua/default.nix
··· 1 1 { lib 2 2 , buildPythonPackage 3 3 , fetchPypi 4 - , jupyter_console 4 + , jupyter-console 5 5 , jupyter-core 6 6 , pygments 7 7 , termcolor ··· 19 19 }; 20 20 21 21 propagatedBuildInputs = [ 22 - jupyter_console 22 + jupyter-console 23 23 jupyter-core 24 24 pygments 25 25 termcolor
+2 -2
pkgs/development/python-modules/jupyter/default.nix
··· 3 3 , fetchPypi 4 4 , notebook 5 5 , qtconsole 6 - , jupyter_console 6 + , jupyter-console 7 7 , nbconvert 8 8 , ipykernel 9 9 , ipywidgets ··· 18 18 sha256 = "d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f"; 19 19 }; 20 20 21 - propagatedBuildInputs = [ notebook qtconsole jupyter_console nbconvert ipykernel ipywidgets ]; 21 + propagatedBuildInputs = [ notebook qtconsole jupyter-console nbconvert ipykernel ipywidgets ]; 22 22 23 23 # Meta-package, no tests 24 24 doCheck = false;
+6 -4
pkgs/development/python-modules/jupyter_console/default.nix pkgs/development/python-modules/jupyter-console/default.nix
··· 18 18 }: 19 19 20 20 buildPythonPackage rec { 21 - pname = "jupyter_console"; 22 - version = "6.6.1"; 21 + pname = "jupyter-console"; 22 + version = "6.6.3"; 23 23 format = "pyproject"; 24 24 25 25 disabled = pythonOlder "3.7"; 26 26 27 27 src = fetchPypi { 28 - inherit pname version; 29 - hash = "sha256-WTEhLVy8H5Vvb9YVdVteFfOJqOqmlyiNu+Q3cBdhXsw="; 28 + pname = "jupyter_console"; 29 + inherit version; 30 + hash = "sha256-VmpL8xyHrb+t8izfhG4wabWace1dpx1rpNiqrRSlNTk="; 30 31 }; 31 32 32 33 nativeBuildInputs = [ ··· 71 72 homepage = "https://github.com/jupyter/jupyter_console"; 72 73 changelog = "https://github.com/jupyter/jupyter_console/releases/tag/v${version}"; 73 74 license = lib.licenses.bsd3; 75 + maintainers = lib.teams.jupyter.members; 74 76 }; 75 77 }
+1
pkgs/top-level/python-aliases.nix
··· 193 193 JPype1 = jpype1; # added 2023-02-19 194 194 jsonschema_3 = throw "jsonschema 3 is neither the latest version nor needed inside nixpkgs anymore"; # added 2023-06-28 195 195 jupyter_client = jupyter-client; # added 2021-10-15 196 + jupyter_console = jupyter-console; # added 2023-07-31 196 197 jupyter_core = jupyter-core; # added 2023-01-05 197 198 jupyter_server = jupyter-server; # added 2023-01-05 198 199 jupyter-server-ydoc = jupyter-collaboration; # added 2023-07-18
+1 -1
pkgs/top-level/python-packages.nix
··· 5607 5607 5608 5608 jupyter-contrib-nbextensions = callPackage ../development/python-modules/jupyter-contrib-nbextensions { }; 5609 5609 5610 - jupyter_console = callPackage ../development/python-modules/jupyter_console { }; 5610 + jupyter-console = callPackage ../development/python-modules/jupyter-console { }; 5611 5611 5612 5612 jupyter-core = callPackage ../development/python-modules/jupyter-core { }; 5613 5613