From af2ef72797a67ac9324fd60926c37a3a81a7ed66 Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Tue, 23 Sep 2025 09:13:57 +0200 Subject: [PATCH 1/2] python313Packages.aiocoap: 0.4.14 -> 0.4.15 Diff: https://github.com/chrysn/aiocoap/compare/0.4.14...0.4.15 Changelog: https://github.com/chrysn/aiocoap/blob/0.4.15/NEWS --- pkgs/development/python-modules/aiocoap/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/development/python-modules/aiocoap/default.nix b/pkgs/development/python-modules/aiocoap/default.nix index 2e7cec7569dc..f4bb7f20ac74 100644 --- a/pkgs/development/python-modules/aiocoap/default.nix +++ b/pkgs/development/python-modules/aiocoap/default.nix @@ -19,7 +19,7 @@ buildPythonPackage rec { pname = "aiocoap"; - version = "0.4.14"; + version = "0.4.15"; pyproject = true; disabled = pythonOlder "3.10"; @@ -28,7 +28,7 @@ buildPythonPackage rec { owner = "chrysn"; repo = "aiocoap"; tag = version; - hash = "sha256-v0OzRWHlGaBKqqcIyAlVafd/siXVwaTAZqw+Sstju3s="; + hash = "sha256-OYFHeTM1KXQfxeRoxYKdir3RnWJNua8YBmBUWIqADoI="; }; build-system = [ setuptools ]; From 7e83281c02c4f835b65c2a26c7d51b2c01678f7d Mon Sep 17 00:00:00 2001 From: Fabian Affolter Date: Sat, 4 Oct 2025 20:14:07 +0200 Subject: [PATCH 2/2] python313Packages.pytradfri: add pytest-asyncio --- pkgs/development/python-modules/pytradfri/default.nix | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/pkgs/development/python-modules/pytradfri/default.nix b/pkgs/development/python-modules/pytradfri/default.nix index b979daab4d2f..757ee264246e 100644 --- a/pkgs/development/python-modules/pytradfri/default.nix +++ b/pkgs/development/python-modules/pytradfri/default.nix @@ -6,6 +6,7 @@ aiocoap, dtlssocket, pydantic, + pytest-asyncio, pytestCheckHook, }: @@ -32,7 +33,11 @@ buildPythonPackage rec { ]; }; - nativeCheckInputs = [ pytestCheckHook ] ++ optional-dependencies.async; + nativeCheckInputs = [ + pytest-asyncio + pytestCheckHook + ] + ++ optional-dependencies.async; pythonImportsCheck = [ "pytradfri" ];