2021-02-13 14:23:35 +00:00
|
|
|
{ lib
|
|
|
|
, buildPythonPackage
|
|
|
|
, fetchFromGitHub
|
|
|
|
, flask
|
2021-08-27 14:25:00 +00:00
|
|
|
, prometheus-client
|
2021-02-13 14:23:35 +00:00
|
|
|
, pytestCheckHook
|
|
|
|
}:
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "prometheus-flask-exporter";
|
2022-09-22 12:36:57 +00:00
|
|
|
version = "0.20.3";
|
2021-02-13 14:23:35 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "rycus86";
|
|
|
|
repo = "prometheus_flask_exporter";
|
|
|
|
rev = version;
|
2022-09-22 12:36:57 +00:00
|
|
|
sha256 = "sha256-l9Iw9fvXQMXzq1y/4Dml8uLPJWyqX6SDIXptJVw3cVQ=";
|
2021-02-13 14:23:35 +00:00
|
|
|
};
|
|
|
|
|
2021-08-27 14:25:00 +00:00
|
|
|
propagatedBuildInputs = [ flask prometheus-client ];
|
2021-02-13 14:23:35 +00:00
|
|
|
|
|
|
|
checkInputs = [ pytestCheckHook ];
|
|
|
|
pytestFlagsArray = [ "tests/" ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Prometheus exporter for Flask applications";
|
|
|
|
homepage = "https://github.com/rycus86/prometheus_flask_exporter";
|
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ lbpdt ];
|
|
|
|
};
|
|
|
|
}
|