2022-12-12T23:41:05 python310Packages.asyncio-mqtt 0 -> 1 2022-12-12T23:41:07 attrpath: python310Packages.asyncio-mqtt 2022-12-12T23:41:07 Checking auto update branch... 2022-12-12T23:41:11 [version] 2022-12-12T23:41:11 [version] skipping because derivation has updateScript 2022-12-12T23:41:11 [rustCrateVersion] 2022-12-12T23:41:11 [rustCrateVersion] No cargoSha256 found 2022-12-12T23:41:11 [golangModuleVersion] 2022-12-12T23:41:11 [golangModuleVersion] Not a buildGoModule package with vendorSha256 2022-12-12T23:41:11 [updateScript] 2022-12-12T23:41:14 [updateScript] Success 2022-12-12T23:41:14 [updateScript] this derivation will be built: /nix/store/rkrngn7ihhswxiwpv6ihdm13g60ksyq8-packages.json.drv building '/nix/store/rkrngn7ihhswxiwpv6ihdm13g60ksyq8-packages.json.drv'... Going to be running update for following packages: - python3.10-asyncio-mqtt-0.14.0 Press Enter key to continue... Running update for: - python3.10-asyncio-mqtt-0.14.0: UPDATING ... - python3.10-asyncio-mqtt-0.14.0: DONE. Packages updated! 2022-12-12T23:41:14 2022-12-12T23:41:14 [quotedUrls] 2022-12-12T23:41:14 [quotedUrls] nothing found to replace 2022-12-12T23:41:14 Diff after rewrites: diff --git a/pkgs/development/python-modules/asyncio_mqtt/default.nix b/pkgs/development/python-modules/asyncio_mqtt/default.nix index 41f2f2864d1..d496f8e7486 100644 --- a/pkgs/development/python-modules/asyncio_mqtt/default.nix +++ b/pkgs/development/python-modules/asyncio_mqtt/default.nix @@ -12,7 +12,7 @@ buildPythonPackage rec { pname = "asyncio-mqtt"; - version = "0.14.0"; + version = "0.16.1"; format = "pyproject"; disabled = pythonOlder "3.7"; @@ -21,7 +21,7 @@ buildPythonPackage rec { owner = "sbtinstruments"; repo = pname; rev = "refs/tags/v${version}"; - hash = "sha256-ByVslOx/XsxVan2/xdRi+wOQR9oVpIGtHPcHlIcHMEk="; + hash = "sha256-f3JqocjOEwNjo6Uv17ij6oEdrjb6Z2wTzdhdVhx46iM="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; 2022-12-12T23:42:43 No auto update branch exists 2022-12-12T23:42:49 Received ExitFailure 100 when running Raw command: /nix/store/6fr58pqy02hmgw1h7b9nqmv7vlp3v346-nix-2.3.15/bin/nix-build --option sandbox true --arg config "{ allowBroken = true; allowUnfree = true; allowAliases = false; }" --arg overlays "[ ]" -A python310Packages.asyncio-mqtt nix build failed. async def connect(self, *, timeout: int = 10) -> None: try: loop = asyncio.get_running_loop() # [3] Run connect() within an executor thread, since it blocks on socket # connection for up to `keepalive` seconds: https://git.io/Jt5Yc await loop.run_in_executor( None, self._client.connect, self._hostname, self._port, self._keepalive, self._bind_address, self._bind_port, self._clean_start, self._properties, ) client_socket = self._client.socket() _set_client_socket_defaults(client_socket, self._socket_options) # paho.mqtt.Client.connect may raise one of several exceptions. # We convert all of them to the common MqttError for user convenience. # See: https://github.com/eclipse/paho.mqtt.python/blob/v1.5.0/src/paho/mqtt/client.py#L1770 except (OSError, mqtt.WebsocketConnectionError) as error: > raise MqttError(str(error)) from None E asyncio_mqtt.error.MqttError: [Errno -3] Temporary failure in name resolution asyncio_mqtt/client.py:390: MqttError =========================== short test summary info ============================ FAILED tests/test_client.py::test_multiple_messages_generators - asyncio_mqtt... ================= 1 failed, 37 passed, 12 deselected in 0.19s ==================