about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/prometheus_client/default.nix
blob: 7ce36e588d717bd5497172ad0d09ebeadf47351e (plain) (blame)
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.11.0";

  src = fetchPypi {
    inherit pname version;
    sha256 = "3a8baade6cb80bcfe43297e33e7623f3118d660d41387593758e2fb1ea173a86";
  };

  doCheck = false;

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