My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/uptime-kuma-monitor/default.nix

40 lines
798 B

{ lib
, requests
, buildPythonPackage
, fetchPypi
, prometheus-client
, pythonOlder
}:
buildPythonPackage rec {
pname = "uptime-kuma-monitor";
version = "1.0.0";
format = "setuptools";
disabled = pythonOlder "3.8";
src = fetchPypi {
pname = "uptime_kuma_monitor";
inherit version;
sha256 = "0zi4856hj5ar4yidh7366kx3xnh8qzydw9z8vlalcn98jf3jlnk9";
};
propagatedBuildInputs = [
requests
prometheus-client
];
# Project has no test
doCheck = false;
pythonImportsCheck = [
"uptime_kuma_monitor"
];
meta = with lib; {
description = "Python wrapper around UptimeKuma /metrics endpoint";
homepage = "https://github.com/meichthys/utptime_kuma_monitor";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
};
}