2018-07-21 01:44:44 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2018-05-11 17:21:41 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "prometheus_client";
|
2018-08-13 08:29:41 +01:00
|
|
|
version = "0.3.1";
|
2018-05-11 17:21:41 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2018-08-13 08:29:41 +01:00
|
|
|
sha256 = "17bc24c09431644f7c65d7bce9f4237252308070b6395d6d8e87767afe867e24";
|
2018-05-11 17:21:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Prometheus instrumentation library for Python applications";
|
|
|
|
homepage = https://github.com/prometheus/client_python;
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|