python310Packages.jupyter-console: rename from jupyter_console

This commit is contained in:
natsukium 2023-07-31 22:43:30 +09:00
parent 48992ab9b6
commit eb85576db1
No known key found for this signature in database
GPG key ID: 9EA45A31DB994C53
5 changed files with 9 additions and 7 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,14 +18,15 @@
}:
buildPythonPackage rec {
pname = "jupyter_console";
pname = "jupyter-console";
version = "6.6.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
pname = "jupyter_console";
inherit version;
hash = "sha256-WTEhLVy8H5Vvb9YVdVteFfOJqOqmlyiNu+Q3cBdhXsw=";
};

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

@ -5603,7 +5603,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 { };