1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "prometheus_client";
5 version = "0.5.0";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "e8c11ff5ca53de6c3d91e1510500611cafd1d247a937ec6c588a0a7cc3bef93c";
10 };
11
12 doCheck = false;
13
14 meta = with lib; {
15 description = "Prometheus instrumentation library for Python applications";
16 homepage = https://github.com/prometheus/client_python;
17 license = licenses.asl20;
18 };
19}