nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix

python3Packages.ipykernel: 6.29.5 -> 6.30.1

https://github.com/ipython/ipykernel/releases/tag/v6.30.1

This commit was automatically generated using update-python-libraries.

+2 -2
+2 -2
pkgs/development/python-modules/ipykernel/default.nix
··· 25 25 26 26 buildPythonPackage rec { 27 27 pname = "ipykernel"; 28 - version = "6.29.5"; 28 + version = "6.30.1"; 29 29 pyproject = true; 30 30 31 31 disabled = pythonOlder "3.8"; 32 32 33 33 src = fetchPypi { 34 34 inherit pname version; 35 - hash = "sha256-8JOiLEpA+IKPjjMKnCl8uT3KsTvZZ43tbejlz4HFYhU="; 35 + hash = "sha256-arsnAWGJZALna5E5T83OXRvl1F9FZnHlCAVy+FBb45s="; 36 36 }; 37 37 38 38 # debugpy is optional, see https://github.com/ipython/ipykernel/pull/767