pythonPackages.prometheus-flask-exporter: init at 0.18.1
This commit is contained in:
parent
fb997de4bb
commit
17959634d3
@ -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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4721,6 +4721,8 @@ in {
|
|||||||
|
|
||||||
prometheus_client = callPackage ../development/python-modules/prometheus_client { };
|
prometheus_client = callPackage ../development/python-modules/prometheus_client { };
|
||||||
|
|
||||||
|
prometheus-flask-exporter = callPackage ../development/python-modules/prometheus-flask-exporter { };
|
||||||
|
|
||||||
promise = callPackage ../development/python-modules/promise { };
|
promise = callPackage ../development/python-modules/promise { };
|
||||||
|
|
||||||
prompt_toolkit = let
|
prompt_toolkit = let
|
||||||
|
Loading…
Reference in New Issue
Block a user