about summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2023-08-17 21:30:37 +0200
committerGitHub <noreply@github.com>2023-08-17 21:30:37 +0200
commitcc4ecf1ef26df974e29439976126214055553a46 (patch)
treee6d969b81d670895760b1d0797c0499815be6eb0
parente7a42f41939c0a6188a5aa9b96486ee69212b3d5 (diff)
python310Packages.jupyterhub-tmpauthenticator: add changelog to meta
-rw-r--r--pkgs/development/python-modules/jupyterhub-tmpauthenticator/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/jupyterhub-tmpauthenticator/default.nix b/pkgs/development/python-modules/jupyterhub-tmpauthenticator/default.nix
index fcc1039311c83..0306fa0837a6c 100644
--- a/pkgs/development/python-modules/jupyterhub-tmpauthenticator/default.nix
+++ b/pkgs/development/python-modules/jupyterhub-tmpauthenticator/default.nix
@@ -12,7 +12,7 @@ buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-7TuAYP6mRffsZL+O+AMgt5HBu6PhwLYj5A8X8DnMfl0=";
+    hash = "sha256-7TuAYP6mRffsZL+O+AMgt5HBu6PhwLYj5A8X8DnMfl0=";
   };
 
   propagatedBuildInputs = [ jupyterhub ];
@@ -23,9 +23,10 @@ buildPythonPackage rec {
   pythonImportsCheck = [ "tmpauthenticator" ];
 
   meta = with lib; {
-    description = "Simple Jupyterhub authenticator that allows anyone to log in.";
-    license = with licenses; [ bsd3 ];
+    description = "Simple Jupyterhub authenticator that allows anyone to log in";
     homepage = "https://github.com/jupyterhub/tmpauthenticator";
+    changelog = "https://github.com/jupyterhub/tmpauthenticator/blob/v${version}/CHANGELOG.md";
+    license = with licenses; [ bsd3 ];
     maintainers = with maintainers; [ chiroptical ];
   };
 }