mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
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
|
{ lib
|
||||||
, buildPythonPackage
|
, buildPythonPackage
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, jupyter_console
|
, jupyter-console
|
||||||
, jupyter-core
|
, jupyter-core
|
||||||
, pygments
|
, pygments
|
||||||
, termcolor
|
, termcolor
|
||||||
|
@ -19,7 +19,7 @@ buildPythonPackage rec {
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
propagatedBuildInputs = [
|
||||||
jupyter_console
|
jupyter-console
|
||||||
jupyter-core
|
jupyter-core
|
||||||
pygments
|
pygments
|
||||||
termcolor
|
termcolor
|
||||||
|
|
|
@ -18,14 +18,15 @@
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "jupyter_console";
|
pname = "jupyter-console";
|
||||||
version = "6.6.1";
|
version = "6.6.1";
|
||||||
format = "pyproject";
|
format = "pyproject";
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.7";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
pname = "jupyter_console";
|
||||||
|
inherit version;
|
||||||
hash = "sha256-WTEhLVy8H5Vvb9YVdVteFfOJqOqmlyiNu+Q3cBdhXsw=";
|
hash = "sha256-WTEhLVy8H5Vvb9YVdVteFfOJqOqmlyiNu+Q3cBdhXsw=";
|
||||||
};
|
};
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
, fetchPypi
|
, fetchPypi
|
||||||
, notebook
|
, notebook
|
||||||
, qtconsole
|
, qtconsole
|
||||||
, jupyter_console
|
, jupyter-console
|
||||||
, nbconvert
|
, nbconvert
|
||||||
, ipykernel
|
, ipykernel
|
||||||
, ipywidgets
|
, ipywidgets
|
||||||
|
@ -18,7 +18,7 @@ buildPythonPackage rec {
|
||||||
sha256 = "d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f";
|
sha256 = "d9dc4b3318f310e34c82951ea5d6683f67bed7def4b259fafbfe4f1beb1d8e5f";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [ notebook qtconsole jupyter_console nbconvert ipykernel ipywidgets ];
|
propagatedBuildInputs = [ notebook qtconsole jupyter-console nbconvert ipykernel ipywidgets ];
|
||||||
|
|
||||||
# Meta-package, no tests
|
# Meta-package, no tests
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
|
|
|
@ -193,6 +193,7 @@ mapAliases ({
|
||||||
JPype1 = jpype1; # added 2023-02-19
|
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
|
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_client = jupyter-client; # added 2021-10-15
|
||||||
|
jupyter_console = jupyter-console; # added 2023-07-31
|
||||||
jupyter_core = jupyter-core; # added 2023-01-05
|
jupyter_core = jupyter-core; # added 2023-01-05
|
||||||
jupyter_server = jupyter-server; # added 2023-01-05
|
jupyter_server = jupyter-server; # added 2023-01-05
|
||||||
jupyter-server-ydoc = jupyter-collaboration; # added 2023-07-18
|
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-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 { };
|
jupyter-core = callPackage ../development/python-modules/jupyter-core { };
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue