diff --git a/pkgs/development/python-modules/aiomysensors/default.nix b/pkgs/development/python-modules/aiomysensors/default.nix index bbbaa7361c69..23f26ca72b25 100644 --- a/pkgs/development/python-modules/aiomysensors/default.nix +++ b/pkgs/development/python-modules/aiomysensors/default.nix @@ -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 = [ diff --git a/pkgs/development/python-modules/asyncio_mqtt/default.nix b/pkgs/development/python-modules/asyncio_mqtt/default.nix index 6a52ff4fd2d1..41f2f2864d18 100644 --- a/pkgs/development/python-modules/asyncio_mqtt/default.nix +++ b/pkgs/development/python-modules/asyncio_mqtt/default.nix @@ -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";