summary refs log tree commit diff
path: root/pkgs/development/python-modules/py-air-control-exporter/default.nix
blob: 869aea01a29a9a6fb85a29ddf385745f495fa2d7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ buildPythonPackage, fetchPypi, flask, isPy27, lib, nixosTests
, prometheus_client, py-air-control, pytestCheckHook, pytest-cov, pytest-runner
, setuptools-scm }:

buildPythonPackage rec {
  pname = "py-air-control-exporter";
  version = "0.3.0";
  disabled = isPy27;

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

  nativeBuildInputs = [ setuptools-scm ];
  checkInputs = [ pytestCheckHook pytest-cov pytest-runner ];
  propagatedBuildInputs = [ flask prometheus_client py-air-control ];

  passthru.tests = { inherit (nixosTests.prometheus-exporters) py-air-control; };

  meta = with lib; {
    description = "Exports Air Quality Metrics to Prometheus.";
    homepage = "https://github.com/urbas/py-air-control-exporter";
    license = licenses.mit;
    maintainers = with maintainers; [ urbas ];
  };
}