Merge pull request #133247 from fabaff/bump-coapthon3

This commit is contained in:
Sandro 2021-08-10 12:36:35 +02:00 committed by GitHub
commit 7e060a572f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 44 additions and 9 deletions

View File

@ -2,14 +2,14 @@
buildPythonPackage rec {
pname = "CoAPthon3";
version = "1.0.1";
version = "1.0.2";
disabled = isPy27;
src = fetchFromGitHub {
owner = "Tanganelli";
repo = pname;
rev = version;
sha256 = "1im35i5i72y1p9qj8ixkwq7q6ksbrmi42giqiyfgjp1ym38snl69";
sha256 = "sha256-9QApoPUu3XFZY/lgjAsf5r2StFiRtUd1UXWDrzYUh6w=";
};
propagatedBuildInputs = [ cachetools ];

View File

@ -1,6 +1,15 @@
{ buildPythonPackage, fetchPypi, flask, isPy27, lib, nixosTests
, prometheus_client, py-air-control, pytestCheckHook, pytest-cov, pytest-runner
, setuptools-scm }:
{ lib
, buildPythonPackage
, click
, fetchPypi
, flask
, isPy27
, nixosTests
, prometheus_client
, py-air-control
, pytestCheckHook
, setuptools-scm
}:
buildPythonPackage rec {
pname = "py-air-control-exporter";
@ -12,14 +21,40 @@ buildPythonPackage rec {
sha256 = "ece2e446273542e5c0352c9d6e80d8279132c6ada3649c59e87a711448801a3b";
};
nativeBuildInputs = [ setuptools-scm ];
checkInputs = [ pytestCheckHook pytest-cov pytest-runner ];
propagatedBuildInputs = [ flask prometheus_client py-air-control ];
nativeBuildInputs = [
setuptools-scm
];
propagatedBuildInputs = [
click
flask
prometheus_client
py-air-control
];
checkInputs = [
pytestCheckHook
];
postPatch = ''
substituteInPlace setup.py \
--replace "pytest-runner" ""
substituteInPlace setup.cfg \
--replace "--cov=py_air_control_exporter" ""
'';
disabledTests = [
# Tests are outdated
"test_help"
"test_unknown_protocol"
];
pythonImportsCheck = [ "py_air_control_exporter" ];
passthru.tests = { inherit (nixosTests.prometheus-exporters) py-air-control; };
meta = with lib; {
description = "Exports Air Quality Metrics to Prometheus.";
description = "Exports Air Quality Metrics to Prometheus";
homepage = "https://github.com/urbas/py-air-control-exporter";
license = licenses.mit;
maintainers = with maintainers; [ urbas ];