python3Packages.ipykernel: 6.15.3 -> 6.20.0

This commit is contained in:
Martin Weinelt 2022-12-30 20:13:19 +01:00
parent a94a4cb0e2
commit 1682c4d696

View file

@ -4,6 +4,7 @@
, fetchPypi
, hatchling
, pythonOlder
, comm
, ipython
, jupyter-client
, packaging
@ -14,14 +15,14 @@
buildPythonPackage rec {
pname = "ipykernel";
version = "6.15.3";
version = "6.20.0";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-uB1XsOFxZwhEvynNwRVisQENPahxFcRRPg7mYKg2h2U=";
sha256 = "sha256-ffr67GRTAHEMQUecCwvcE6nqZjm+5uOtBCdXZ06amik=";
};
# debugpy is optional, see https://github.com/ipython/ipykernel/pull/767
@ -34,6 +35,7 @@ buildPythonPackage rec {
];
propagatedBuildInputs = [
comm
ipython
jupyter-client
packaging