diff options
| author | natsukium <tomoya.otabi@gmail.com> | 2024-06-08 19:53:02 +0900 |
|---|---|---|
| committer | natsukium <tomoya.otabi@gmail.com> | 2024-09-08 11:59:08 +0900 |
| commit | b92c4489c3f50831e759c850c693090fa2e37a78 (patch) | |
| tree | 3d00727a90be56d691d327a46137b95481bac11d | |
| parent | [Backport release-24.05] apr: 1.7.4 -> 1.7.5 (#340218) (diff) | |
| download | nixpkgs-b92c4489c3f50831e759c850c693090fa2e37a78.tar.gz | |
python311Packages.notebook: 7.2.0 -> 7.2.1
Changelog: https://github.com/jupyter/notebook/blob/v7.2.1/CHANGELOG.md
(cherry picked from commit 701429c7e9445d2ee7c635de4fafbcbdf4b1d8a8)
| -rw-r--r-- | pkgs/development/python-modules/notebook/default.nix | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/development/python-modules/notebook/default.nix b/pkgs/development/python-modules/notebook/default.nix index 6b18e5133301..8d9095bc3c11 100644 --- a/pkgs/development/python-modules/notebook/default.nix +++ b/pkgs/development/python-modules/notebook/default.nix @@ -17,14 +17,14 @@ buildPythonPackage rec { pname = "notebook"; - version = "7.2.0"; - disabled = pythonOlder "3.8"; + version = "7.2.1"; + pyproject = true; - format = "pyproject"; + disabled = pythonOlder "3.8"; src = fetchPypi { inherit pname version; - hash = "sha256-NKK6SwitXRnskw23SE+3l0aheEvp4aX4IY+a+GVqFB8="; + hash = "sha256-Qoe22ll0CzIXPQHWQfdj0pL0nDDnpRuJxGuoRzEmNB4="; }; postPatch = '' @@ -32,13 +32,13 @@ buildPythonPackage rec { --replace "timeout = 300" "" ''; - nativeBuildInputs = [ + build-system = [ hatch-jupyter-builder hatchling jupyterlab ]; - propagatedBuildInputs = [ + dependencies = [ jupyter-server jupyterlab jupyterlab-server |
