python3Packages.ipykernel: 6.12.1 -> 6.15.1

This commit is contained in:
Martin Weinelt
2022-07-21 22:33:54 +02:00
parent 9be24d492b
commit df60e8e592
@@ -2,6 +2,7 @@
, buildPythonPackage
, callPackage
, fetchPypi
, hatchling
, pythonOlder
, ipython
, jupyter-client
@@ -13,20 +14,25 @@
buildPythonPackage rec {
pname = "ipykernel";
version = "6.12.1";
version = "6.15.1";
format = "pyproject";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-CGj1VhcpreREAR+Mp9NQLcnyf39E4g8dX+5+Hytxg6E=";
sha256 = "sha256-N6zDJUyqig2vzd3cjchjpgrRtGSHtoruNh2aFb2pgRI=";
};
# debugpy is optional, see https://github.com/ipython/ipykernel/pull/767
postPatch = ''
sed -i "/debugpy/d" setup.py
sed -i "/debugpy/d" pyproject.toml
'';
nativeBuildInputs = [
hatchling
];
propagatedBuildInputs = [
ipython
jupyter-client