python313Packages.aiocoap: 0.4.14 -> 0.4.15 (#445425)

This commit is contained in:
Fabian Affolter
2025-10-05 12:13:56 +00:00
committed by GitHub
2 changed files with 8 additions and 3 deletions
@@ -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 ];
@@ -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" ];