Merge pull request #299836 from fabaff/pyinsteon-fix

python312Packages.pyinsteon: disable all handlers tests on Python 3.12
This commit is contained in:
Fabian Affolter 2024-03-29 00:03:28 +01:00 committed by GitHub
commit 8c1931aaba
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 11 additions and 22 deletions

View File

@ -1,6 +1,7 @@
{ lib
, aiofiles
, aiohttp
, async-timeout
, async-generator
, buildPythonPackage
, fetchFromGitHub
@ -12,31 +13,30 @@
, pythonOlder
, setuptools
, voluptuous
, wheel
}:
buildPythonPackage rec {
pname = "pyinsteon";
version = "1.5.3";
format = "pyproject";
pyproject = true;
disabled = pythonOlder "3.8";
src = fetchFromGitHub {
owner = pname;
repo = pname;
owner = "pyinsteon";
repo = "pyinsteon";
rev = "refs/tags/${version}";
hash = "sha256-9d6QbekUv63sjKdK+ZogYOkGfFXVW+JB6ITHnehLwtM=";
};
nativeBuildInputs = [
build-system = [
setuptools
wheel
];
propagatedBuildInputs = [
dependencies = [
aiofiles
aiohttp
async-timeout
pypubsub
pyserial
pyserial-asyncio
@ -48,20 +48,9 @@ buildPythonPackage rec {
pytestCheckHook
];
disabledTests = lib.optionals (pythonAtLeast "3.12") [
# AssertionError: Failed test 'read_eeprom_response' with argument 'group' value X vs expected value Z
"test_async_send"
"test_nak_response"
"test_no_direct_ack"
"test_on_level"
"test_on_level_group"
"test_on_level_nak"
# AssertionError: Failed test 'read_eeprom_response' with argument 'target' value X vs expected value Y
"test_other_status"
"test_status_command"
"test_status_request_hub"
# stuck in epoll
"test_read_all_peek"
disabledTestPaths = lib.optionals (pythonAtLeast "3.12") [
# Tests are blocking or failing
"tests/test_handlers/"
];
pythonImportsCheck = [
@ -70,7 +59,6 @@ buildPythonPackage rec {
meta = with lib; {
description = "Python library to support Insteon home automation projects";
mainProgram = "insteon_tools";
longDescription = ''
This is a Python package to interface with an Insteon Modem. It has been
tested to work with most USB or RS-232 serial based devices such as the
@ -80,5 +68,6 @@ buildPythonPackage rec {
changelog = "https://github.com/pyinsteon/pyinsteon/releases/tag/${version}";
license = with licenses; [ mit ];
maintainers = with maintainers; [ fab ];
mainProgram = "insteon_tools";
};
}