Unverified Commit 9a2ad4a0 authored by Ryan Lahfa's avatar Ryan Lahfa Committed by GitHub
Browse files

Merge pull request #231145 from JulienMalka/uptime-kuma-api-0-13

python3Packages.uptime-kuma-api: 0.10.0 -> 0.13.0
parents ca2e0a84 2467a8ef
Loading
Loading
Loading
Loading
+4 −2
Original line number Diff line number Diff line
@@ -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 ];
  };