2018-07-20 17:44:44 -07:00
|
|
|
{ lib, buildPythonPackage, fetchPypi }:
|
2018-05-11 09:21:41 -07:00
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
pname = "prometheus_client";
|
2019-10-23 23:47:42 -07:00
|
|
|
version = "0.7.1";
|
2018-05-11 09:21:41 -07:00
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
inherit pname version;
|
2019-10-23 23:47:42 -07:00
|
|
|
sha256 = "71cd24a2b3eb335cb800c7159f423df1bd4dcd5171b234be15e3f31ec9f622da";
|
2018-05-11 09:21:41 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
doCheck = false;
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Prometheus instrumentation library for Python applications";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/prometheus/client_python";
|
2018-05-11 09:21:41 -07:00
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
|
|
|
}
|