summary refs log tree commit diff
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2022-12-11 00:59:58 +0100
committerGitHub <noreply@github.com>2022-12-11 00:59:58 +0100
commit23dfe1a2320f8327cea3bc3ee03cb2c3b5afb270 (patch)
tree01ef10434054e8d042c516507a356996bc4eb56e
parent99dc258685849b22c3c160cf154f8e0ae1e4e380 (diff)
downloadnixpkgs-23dfe1a2320f8327cea3bc3ee03cb2c3b5afb270.tar
nixpkgs-23dfe1a2320f8327cea3bc3ee03cb2c3b5afb270.tar.gz
nixpkgs-23dfe1a2320f8327cea3bc3ee03cb2c3b5afb270.tar.bz2
nixpkgs-23dfe1a2320f8327cea3bc3ee03cb2c3b5afb270.tar.lz
nixpkgs-23dfe1a2320f8327cea3bc3ee03cb2c3b5afb270.tar.xz
nixpkgs-23dfe1a2320f8327cea3bc3ee03cb2c3b5afb270.tar.zst
nixpkgs-23dfe1a2320f8327cea3bc3ee03cb2c3b5afb270.zip
python310Packages.databricks-cli: add changelog to meta
-rw-r--r--pkgs/development/python-modules/databricks-cli/default.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/databricks-cli/default.nix b/pkgs/development/python-modules/databricks-cli/default.nix
index 2cf50bd5c89..bc675c7633e 100644
--- a/pkgs/development/python-modules/databricks-cli/default.nix
+++ b/pkgs/development/python-modules/databricks-cli/default.nix
@@ -1,4 +1,6 @@
-{ lib, buildPythonPackage, fetchPypi
+{ lib
+, buildPythonPackage
+, fetchPypi
 , click
 , oauthlib
 , requests
@@ -14,7 +16,7 @@ buildPythonPackage rec {
 
   src = fetchPypi {
     inherit pname version;
-    sha256 = "sha256-vAxN0ILwM8tteXjKyspSYWmO/jpMcPUvmHYsONuSXOA=";
+    hash = "sha256-vAxN0ILwM8tteXjKyspSYWmO/jpMcPUvmHYsONuSXOA=";
   };
 
   checkInputs = [
@@ -37,6 +39,7 @@ buildPythonPackage rec {
   meta = with lib; {
     homepage = "https://github.com/databricks/databricks-cli";
     description = "A command line interface for Databricks";
+    changelog = "https://github.com/databricks/databricks-cli/releases/tag/${version}";
     license = licenses.asl20;
     maintainers = with maintainers; [ tbenst ];
   };