depot/third_party/nixpkgs/pkgs/development/python-modules/uptime-kuma-api/default.nix
Default email 94427deb9d Project import generated by Copybara.
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
2023-05-24 16:37:59 +03:00

40 lines
923 B
Nix

{ lib
, buildPythonPackage
, fetchPypi
, python-socketio
, pythonOlder
}:
buildPythonPackage rec {
pname = "uptime-kuma-api";
version = "0.13.0";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
pname = "uptime_kuma_api";
inherit version;
hash = "sha256-MoHE6Y7x1F1l70tuCHNIPt+vpqfJ00EUIMHnE4476Co=";
};
propagatedBuildInputs = [
python-socketio
python-socketio.optional-dependencies.client
];
pythonImportsCheck = [
"uptime_kuma_api"
];
# Tests need an uptime-kuma instance to run
doCheck = false;
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 ];
};
}