about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2024-01-14 11:55:39 -0500
committerGitHub <noreply@github.com>2024-01-14 11:55:39 -0500
commit875bfcc88ea4a81c0afb3557817d133f3f41d8dc (patch)
treecb66554cf0095558e1dcd02600d04acd6dac9827 /pkgs
parent503ee50f709398fbd40585f8a0af586ca5c7e1f3 (diff)
parent8dcf8f9572124f18f171d8336ace9862f3daa6dc (diff)
Merge pull request #280903 from r-ryantm/auto-update/python311Packages.garth
python311Packages.garth: 0.4.43 -> 0.4.44
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/python-modules/garth/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/python-modules/garth/default.nix b/pkgs/development/python-modules/garth/default.nix
index 6c3ba969308f5..f6612811a6922 100644
--- a/pkgs/development/python-modules/garth/default.nix
+++ b/pkgs/development/python-modules/garth/default.nix
@@ -12,14 +12,14 @@
 
 buildPythonPackage rec {
   pname = "garth";
-  version = "0.4.43";
-  format = "pyproject";
+  version = "0.4.44";
+  pyproject = true;
 
   disabled = pythonOlder "3.9";
 
   src = fetchPypi {
     inherit pname version;
-    hash = "sha256-PlHyyXsB79wsEvZY4CmpX4ohCQUjz+ogmHOtIxEhIcc=";
+    hash = "sha256-CgLWstmhWXI2w6KBSpIGp8G1smWAKXC0goHKw3I9rJ4=";
   };
 
   nativeBuildInputs = [
@@ -59,6 +59,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "Garmin SSO auth and connect client";
     homepage = "https://github.com/matin/garth";
+    changelog = "https://github.com/matin/garth/releases/tag/${version}";
     license = licenses.mit;
     maintainers = with maintainers; [ fab ];
   };