python3Packages.py-air-control-exporter: init at 0.1.4
This commit is contained in:
parent
eefdca1bcf
commit
26c3c9ccbb
@ -0,0 +1,24 @@
|
|||||||
|
{ buildPythonPackage, fetchPypi, flask, isPy27, lib, prometheus_client
|
||||||
|
, py-air-control, pytestCheckHook, pytestcov, pytestrunner, setuptools_scm }:
|
||||||
|
|
||||||
|
buildPythonPackage rec {
|
||||||
|
pname = "py-air-control-exporter";
|
||||||
|
version = "0.1.4";
|
||||||
|
disabled = isPy27;
|
||||||
|
|
||||||
|
src = fetchPypi {
|
||||||
|
inherit pname version;
|
||||||
|
sha256 = "1f13d3mlj6c3xvkclimahx7gpqqn8z56lh4kwy1d3gkjm7zs9zw9";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ setuptools_scm ];
|
||||||
|
checkInputs = [ pytestCheckHook pytestcov pytestrunner ];
|
||||||
|
propagatedBuildInputs = [ flask prometheus_client 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 ];
|
||||||
|
};
|
||||||
|
}
|
@ -4851,6 +4851,8 @@ in {
|
|||||||
|
|
||||||
py-air-control = callPackage ../development/python-modules/py-air-control { };
|
py-air-control = callPackage ../development/python-modules/py-air-control { };
|
||||||
|
|
||||||
|
py-air-control-exporter = callPackage ../development/python-modules/py-air-control-exporter { };
|
||||||
|
|
||||||
py2bit = callPackage ../development/python-modules/py2bit { };
|
py2bit = callPackage ../development/python-modules/py2bit { };
|
||||||
|
|
||||||
py3buddy = toPythonModule (callPackage ../development/python-modules/py3buddy { });
|
py3buddy = toPythonModule (callPackage ../development/python-modules/py3buddy { });
|
||||||
|
Loading…
Reference in New Issue
Block a user