pythonPackages.prometheus-flask-exporter: init at 0.18.1

This commit is contained in:
Louis Blin
2021-01-31 14:53:49 +00:00
parent fb997de4bb
commit 17959634d3
2 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, flask
, prometheus_client
, pytestCheckHook
}:
buildPythonPackage rec {
pname = "prometheus-flask-exporter";
version = "0.18.1";
src = fetchFromGitHub {
owner = "rycus86";
repo = "prometheus_flask_exporter";
rev = version;
sha256 = "1dwisp681w0f6zf0000rxd3ksdb48zb9mr38qfdqk2ir24y8w370";
};
propagatedBuildInputs = [ flask prometheus_client ];
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 ];
};
}