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

  src = fetchPypi {
    inherit pname version;
    sha256 = "71cd24a2b3eb335cb800c7159f423df1bd4dcd5171b234be15e3f31ec9f622da";
  };

  doCheck = false;

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