depot/third_party/nixpkgs/pkgs/development/python-modules/prometheus-flask-exporter/default.nix
Default email fa5436e0a7 Project import generated by Copybara.
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
2024-06-05 17:53:02 +02:00

36 lines
778 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
flask,
prometheus-client,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "prometheus-flask-exporter";
version = "0.22.4";
format = "setuptools";
src = fetchFromGitHub {
owner = "rycus86";
repo = "prometheus_flask_exporter";
rev = version;
hash = "sha256-GAQ80J7at8Apqu+DUMN3+rLi/lrNv5Y7w/DKpUN2iu8=";
};
propagatedBuildInputs = [
flask
prometheus-client
];
nativeCheckInputs = [ 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 ];
};
}