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

python3Packages.notebook: 7.4.3 -> 7.4.4

https://github.com/jupyter/notebook/blob/v7.4.4/CHANGELOG.md

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

+4 -4
+4 -4
pkgs/development/python-modules/notebook/default.nix
··· 27 27 28 28 buildPythonPackage rec { 29 29 pname = "notebook"; 30 - version = "7.4.3"; 30 + version = "7.4.4"; 31 31 pyproject = true; 32 32 33 33 src = fetchFromGitHub { 34 34 owner = "jupyter"; 35 35 repo = "notebook"; 36 36 tag = "v${version}"; 37 - hash = "sha256-DpGWBV5MeCvoGSBadObVEaYwA5kRmHj8NdVWpJ+pHjA="; 37 + hash = "sha256-bj4iQvm0TGBiCu9drJ8QFXsedzm/cEjevNQS6UsasNs="; 38 38 }; 39 39 40 40 postPatch = '' ··· 54 54 55 55 offlineCache = yarn-berry_3.fetchYarnBerryDeps { 56 56 inherit src missingHashes; 57 - hash = "sha256-S0lnRJ+9F1RhymlAOxo3sEJJrHYo5IWeWn80obcgVlM="; 57 + hash = "sha256-nRaWzr5Q904KojfK0mPgLX9be82axb8Aab0SJULE7RU="; 58 58 }; 59 59 60 60 build-system = [ ··· 88 88 __darwinAllowLocalNetworking = true; 89 89 90 90 meta = { 91 - changelog = "https://github.com/jupyter/notebook/blob/v${version}/CHANGELOG.md"; 91 + changelog = "https://github.com/jupyter/notebook/blob/${src.tag}/CHANGELOG.md"; 92 92 description = "Web-based notebook environment for interactive computing"; 93 93 homepage = "https://github.com/jupyter/notebook"; 94 94 license = lib.licenses.bsd3;