1{ lib, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "prometheus_client";
5 version = "0.3.1";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "17bc24c09431644f7c65d7bce9f4237252308070b6395d6d8e87767afe867e24";
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}