Merge pull request #200902 from fabaff/aiomysensors-bump

python310Packages.asyncio-mqtt: 0.13.0 -> 0.14.0, python310Packages.aiomysensors: 0.3.2 -> 0.3.3
This commit is contained in:
Fabian Affolter 2022-11-15 08:40:11 +01:00 committed by GitHub
commit 112206ebf4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 36 additions and 7 deletions

View file

@ -15,7 +15,7 @@
buildPythonPackage rec {
pname = "aiomysensors";
version = "0.3.2";
version = "0.3.3";
format = "pyproject";
disabled = pythonOlder "3.9";
@ -24,7 +24,7 @@ buildPythonPackage rec {
owner = "MartinHjelmare";
repo = pname;
rev = "v${version}";
hash = "sha256-XPvnZOshA+PdFOzOlJXMfRTRYSue0uHsNwQsCwv3WOU=";
hash = "sha256-VvGhFf9x257YdSmOxjztGZW9FLBNd028rH3+BvXAQ4o=";
};
nativeBuildInputs = [

View file

@ -1,15 +1,19 @@
{ lib
, anyio
, buildPythonPackage
, fetchFromGitHub
, paho-mqtt
, pytestCheckHook
, pythonOlder
, setuptools
, setuptools-scm
, typing-extensions
}:
buildPythonPackage rec {
pname = "asyncio-mqtt";
version = "0.13.0";
format = "setuptools";
version = "0.14.0";
format = "pyproject";
disabled = pythonOlder "3.7";
@ -17,22 +21,47 @@ buildPythonPackage rec {
owner = "sbtinstruments";
repo = pname;
rev = "refs/tags/v${version}";
hash = "sha256-On4N5KPnbwYrJguWwBdrnaNq58ZeGIPYSFzIRBfojpQ=";
hash = "sha256-ByVslOx/XsxVan2/xdRi+wOQR9oVpIGtHPcHlIcHMEk=";
};
SETUPTOOLS_SCM_PRETEND_VERSION = version;
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
paho-mqtt
] ++ lib.optionals (pythonOlder "3.10") [
typing-extensions
];
# Module will have tests starting with > 0.13.0
doCheck = false;
checkInputs = [
anyio
pytestCheckHook
];
pythonImportsCheck = [
"asyncio_mqtt"
];
disabledTests = [
# Tests require network access
"test_client_filtered_messages"
"test_client_unfiltered_messages"
"test_client_unsubscribe"
"test_client_will"
"test_client_tls_context"
"test_client_tls_params"
"test_client_username_password "
"test_client_logger"
"test_client_max_concurrent_outgoing_calls"
"test_client_websockets"
"test_client_pending_calls_threshold"
"test_client_no_pending_calls_warnings_with_max_concurrent_outgoing_calls"
];
meta = with lib; {
description = "Idomatic asyncio wrapper around paho-mqtt";
homepage = "https://github.com/sbtinstruments/asyncio-mqtt";