From 2b43eb8e0ce1ef942eca4d4d0700d66538c8bd40 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sun, 5 Mar 2023 10:50:43 +0100 Subject: [PATCH] python310Packages.bash_kernel: update meta --- pkgs/development/python-modules/bash_kernel/default.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/python-modules/bash_kernel/default.nix b/pkgs/development/python-modules/bash_kernel/default.nix index d46cb3490365..b7ccfedfbb85 100644 --- a/pkgs/development/python-modules/bash_kernel/default.nix +++ b/pkgs/development/python-modules/bash_kernel/default.nix @@ -46,10 +46,11 @@ buildPythonPackage rec { ${python.pythonForBuild.interpreter} -m bash_kernel.install --prefix $out ''; - meta = { + meta = with lib; { description = "Bash Kernel for Jupyter"; homepage = "https://github.com/takluyver/bash_kernel"; - license = lib.licenses.bsd3; - maintainers = with lib.maintainers; [ zimbatm ]; + changelog = "https://github.com/takluyver/bash_kernel/releases/tag/${version}"; + license = licenses.bsd3; + maintainers = with maintainers; [ zimbatm ]; }; }