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

python310Packages.jupyter-console: 6.6.1 -> 6.6.3; rename from jupyter_console
This commit is contained in:
OTABI Tomoya 2023-09-05 17:31:59 +09:00 committed by GitHub
commit 2a7b1b605b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 12 additions and 9 deletions

View file

@ -1,7 +1,7 @@
{ lib
, buildPythonPackage
, fetchPypi
, jupyter_console
, jupyter-console
, jupyter-core
, pygments
, termcolor
@ -19,7 +19,7 @@ buildPythonPackage rec {
};
propagatedBuildInputs = [
jupyter_console
jupyter-console
jupyter-core
pygments
termcolor

View file

@ -18,15 +18,16 @@
}:
buildPythonPackage rec {
pname = "jupyter_console";
version = "6.6.1";
pname = "jupyter-console";
version = "6.6.3";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-WTEhLVy8H5Vvb9YVdVteFfOJqOqmlyiNu+Q3cBdhXsw=";
pname = "jupyter_console";
inherit version;
hash = "sha256-VmpL8xyHrb+t8izfhG4wabWace1dpx1rpNiqrRSlNTk=";
};
nativeBuildInputs = [
@ -71,5 +72,6 @@ buildPythonPackage rec {
homepage = "https://github.com/jupyter/jupyter_console";
changelog = "https://github.com/jupyter/jupyter_console/releases/tag/v${version}";
license = lib.licenses.bsd3;
maintainers = lib.teams.jupyter.members;
};
}

View file

@ -3,7 +3,7 @@
, fetchPypi
, notebook
, qtconsole
, jupyter_console
, jupyter-console
, nbconvert
, ipykernel
, ipywidgets
@ -18,7 +18,7 @@ buildPythonPackage rec {
sha256 = "d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f";
};
propagatedBuildInputs = [ notebook qtconsole jupyter_console nbconvert ipykernel ipywidgets ];
propagatedBuildInputs = [ notebook qtconsole jupyter-console nbconvert ipykernel ipywidgets ];
# Meta-package, no tests
doCheck = false;

View file

@ -193,6 +193,7 @@ mapAliases ({
JPype1 = jpype1; # added 2023-02-19
jsonschema_3 = throw "jsonschema 3 is neither the latest version nor needed inside nixpkgs anymore"; # added 2023-06-28
jupyter_client = jupyter-client; # added 2021-10-15
jupyter_console = jupyter-console; # added 2023-07-31
jupyter_core = jupyter-core; # added 2023-01-05
jupyter_server = jupyter-server; # added 2023-01-05
jupyter-server-ydoc = jupyter-collaboration; # added 2023-07-18

View file

@ -5607,7 +5607,7 @@ self: super: with self; {
jupyter-contrib-nbextensions = callPackage ../development/python-modules/jupyter-contrib-nbextensions { };
jupyter_console = callPackage ../development/python-modules/jupyter_console { };
jupyter-console = callPackage ../development/python-modules/jupyter-console { };
jupyter-core = callPackage ../development/python-modules/jupyter-core { };