2018-07-21 01:44:44 +01:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2018-05-11 17:21:41 +01:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "prometheus_client";
|
2020-06-06 07:47:23 +01:00
|
|
|
version = "0.8.0";
|
2018-05-11 17:21:41 +01:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2020-06-06 07:47:23 +01:00
|
|
|
sha256 = "c6e6b706833a6bd1fd51711299edee907857be10ece535126a158f911ee80915";
|
2018-05-11 17:21:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Prometheus instrumentation library for Python applications";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/prometheus/client_python";
|
2018-05-11 17:21:41 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|