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 ];
};
}

View file

@ -4721,6 +4721,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