about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRyan Lahfa <masterancpp@gmail.com>2023-05-20 16:09:38 +0200
committerGitHub <noreply@github.com>2023-05-20 16:09:38 +0200
commit9a2ad4a0ab269b27324b84de585564246ca05ce9 (patch)
tree6cd2e5505adc474e737374682d5a8b1524109e6c
parentca2e0a84e30cf5f638465822f4a6aa1ef76c558b (diff)
parent2467a8efeb31aafd00ee2b49a117106558fea19a (diff)
downloadnixlib-9a2ad4a0ab269b27324b84de585564246ca05ce9.tar
nixlib-9a2ad4a0ab269b27324b84de585564246ca05ce9.tar.gz
nixlib-9a2ad4a0ab269b27324b84de585564246ca05ce9.tar.bz2
nixlib-9a2ad4a0ab269b27324b84de585564246ca05ce9.tar.lz
nixlib-9a2ad4a0ab269b27324b84de585564246ca05ce9.tar.xz
nixlib-9a2ad4a0ab269b27324b84de585564246ca05ce9.tar.zst
nixlib-9a2ad4a0ab269b27324b84de585564246ca05ce9.zip
Merge pull request #231145 from JulienMalka/uptime-kuma-api-0-13
python3Packages.uptime-kuma-api: 0.10.0 -> 0.13.0
-rw-r--r--pkgs/development/python-modules/uptime-kuma-api/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/development/python-modules/uptime-kuma-api/default.nix b/pkgs/development/python-modules/uptime-kuma-api/default.nix
index 03a5dccee994..48bbbf84aa11 100644
--- a/pkgs/development/python-modules/uptime-kuma-api/default.nix
+++ b/pkgs/development/python-modules/uptime-kuma-api/default.nix
@@ -7,14 +7,15 @@
 
 buildPythonPackage rec {
   pname = "uptime-kuma-api";
-  version = "0.10.0";
+  version = "0.13.0";
+  format = "setuptools";
 
   disabled = pythonOlder "3.6";
 
   src = fetchPypi {
     pname = "uptime_kuma_api";
     inherit version;
-    hash = "sha256-qBSXQyruLVGJ0QeihnEUXOqYpvVftdFM5ED3usHT0OQ=";
+    hash = "sha256-MoHE6Y7x1F1l70tuCHNIPt+vpqfJ00EUIMHnE4476Co=";
   };
 
   propagatedBuildInputs = [
@@ -32,6 +33,7 @@ buildPythonPackage rec {
   meta = with lib; {
     description = "A Python wrapper for the Uptime Kuma Socket.IO API";
     homepage = "https://github.com/lucasheld/uptime-kuma-api";
+    changelog = "https://github.com/lucasheld/uptime-kuma-api/blob/${version}/CHANGELOG.md";
     license = with licenses; [ mit ];
     maintainers = with maintainers; [ julienmalka ];
   };