python310Packages.jupyter-console: rename from jupyter_console
This commit is contained in:
parent
48992ab9b6
commit
eb85576db1
5 changed files with 9 additions and 7 deletions
|
@ -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
|
||||
|
|
|
@ -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=";
|
||||
};
|
||||
|
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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 { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue