aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/development/python-modules/prometheus_client/default.nix
blob: 8f608666d72029e475a79a89c18765e74f5ddd97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ lib, buildPythonPackage, fetchPypi }:

buildPythonPackage rec {
  pname = "prometheus_client";
  version = "0.8.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "c6e6b706833a6bd1fd51711299edee907857be10ece535126a158f911ee80915";
  };

  doCheck = false;

  meta = with lib; {
    description = "Prometheus instrumentation library for Python applications";
    homepage = "https://github.com/prometheus/client_python";
    license = licenses.asl20;
  };
}