Merge pull request #111474 from lbpdt/feature/prometheus-flask-exporter

pythonPackages.prometheus-flask-exporter: init at 0.18.1
This commit is contained in:
Sandro 2021-02-09 09:57:17 +01:00 committed by GitHub
commit e3fa2c5f8e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 ];
};
}

View File

@ -5085,6 +5085,8 @@ in {
prometheus_client = callPackage ../development/python-modules/prometheus_client { };
prometheus-flask-exporter = callPackage ../development/python-modules/prometheus-flask-exporter { };
promise = callPackage ../development/python-modules/promise { };
prompt_toolkit = let