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 ]; }; }