summary refs log blame commit diff
path: root/pkgs/servers/monitoring/prometheus/kea-exporter.nix
blob: 003ea6c2af5672d9fe3b6051902ed2bc86cedcfc (plain) (tree)
1
2
3
4
5
6
7
8
9
                                     


                                            
                    
                       


                                   
                                                                 

    
                                             
              

    

                                                 
                     






                                                        



                                                  






                                                                           
{ lib, python3Packages, nixosTests }:

python3Packages.buildPythonApplication rec {
  pname = "kea-exporter";
  version = "0.5.1";
  format = "pyproject";

  src = python3Packages.fetchPypi {
    inherit pname version;
    hash = "sha256-rNGA5XEx9xVUP1SeDPgXcaqgDhgX6JFhRX9GM454P5A=";
  };

  nativeBuildInputs = with python3Packages; [
    pdm-pep517
  ];

  propagatedBuildInputs = with python3Packages; [
    click
    prometheus-client
  ];

  checkPhase = ''
    $out/bin/kea-exporter --help > /dev/null
    $out/bin/kea-exporter --version | grep -q ${version}
  '';

  passthru.tests = {
    inherit (nixosTests.prometheus-exporters) kea;
  };

  meta = with lib; {
    description = "Export Kea Metrics in the Prometheus Exposition Format";
    homepage = "https://github.com/mweinelt/kea-exporter";
    license = licenses.mit;
    maintainers = with maintainers; [ hexa ];
  };
}