2022-12-04T09:47:36 python310Packages.asyncio-mqtt 0 -> 1 2022-12-04T09:47:38 attrpath: python310Packages.asyncio-mqtt 2022-12-04T09:47:38 Checking auto update branch... 2022-12-04T09:47:43 [version] 2022-12-04T09:47:43 [version] skipping because derivation has updateScript 2022-12-04T09:47:43 [rustCrateVersion] 2022-12-04T09:47:43 [rustCrateVersion] No cargoSha256 found 2022-12-04T09:47:43 [golangModuleVersion] 2022-12-04T09:47:43 [golangModuleVersion] Not a buildGoModule package with vendorSha256 2022-12-04T09:47:43 [updateScript] 2022-12-04T09:47:45 [updateScript] Success 2022-12-04T09:47:45 [updateScript] this derivation will be built: /nix/store/kqzdy48zpqw52j6g2qvlp8hsy79qyjr6-packages.json.drv building '/nix/store/kqzdy48zpqw52j6g2qvlp8hsy79qyjr6-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-04T09:47:45 2022-12-04T09:47:45 [quotedUrls] 2022-12-04T09:47:45 [quotedUrls] nothing found to replace 2022-12-04T09:47:45 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..00beb55a113 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.15.0"; 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-FzFhJgib82tynidEiJNsxgC7OKcXen6wB0IzZjVvVwk="; }; SETUPTOOLS_SCM_PRETEND_VERSION = version; 2022-12-04T09:49:14 No auto update branch exists 2022-12-04T09:49:20 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.18s ==================