Merge pull request #313944 from fabaff/aiosasl-fix

python312Packages.aiosasl: fix broken tests on Python 3.12
This commit is contained in:
Fabian Affolter 2024-05-23 21:42:47 +02:00 committed by GitHub
commit fc538a5ed9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 44 additions and 9 deletions

View File

@ -5,13 +5,16 @@
fetchpatch,
pyopenssl,
pytestCheckHook,
pythonOlder,
setuptools,
}:
buildPythonPackage rec {
pname = "aiosasl";
version = "0.5.0";
pyproject = true;
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "horazont";
@ -28,6 +31,14 @@ buildPythonPackage rec {
})
];
postPatch = ''
# https://github.com/horazont/aiosasl/issues/28
substituteInPlace tests/test_aiosasl.py \
--replace-fail "assertRaisesRegexp" "assertRaisesRegex"
'';
build-system = [ setuptools ];
nativeCheckInputs = [
pyopenssl
pytestCheckHook

View File

@ -1,27 +1,32 @@
{
lib,
buildPythonPackage,
fetchFromGitHub,
aiosasl,
aioopenssl,
aiosasl,
babel,
buildPythonPackage,
dnspython,
fetchFromGitHub,
lxml,
multidict,
pyasn1,
pyasn1-modules,
pyasn1,
pyopenssl,
pytestCheckHook,
pythonAtLeast,
pythonOlder,
pythonRelaxDepsHook,
pytz,
setuptools,
sortedcollections,
tzlocal,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "aioxmpp";
version = "0.13.3";
pyproject = true;
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = "horazont";
@ -30,7 +35,15 @@ buildPythonPackage rec {
hash = "sha256-bQPKEM5eKhFI3Kx3U1espdxqjnG4yUgOXmYCrd98PDo=";
};
propagatedBuildInputs = [
pythonRelaxDeps = [
"lxml"
];
build-system = [ setuptools ];
nativeBuildInputs = [ pythonRelaxDepsHook ];
dependencies = [
aiosasl
aioopenssl
babel
@ -60,12 +73,23 @@ buildPythonPackage rec {
disabledTests = [
# AttributeError: 'zoneinfo.ZoneInfo' object has no attribute 'normalize'
"test_convert_field_datetime_default_locale"
] ++ lib.optionals (pythonAtLeast "3.12") [
# asyncio issues
"test_is_abstract"
"Testbackground"
"TestCapturingXSO"
"Testcheck_x509"
"TestClient"
"TestIntegerType"
"TestStanzaStream"
"TestStanzaToken"
"TestXMLStream"
];
meta = {
changelog = "https://github.com/horazont/aioxmpp/blob/${src.rev}/docs/api/changelog.rst";
description = "Pure-python XMPP library for asyncio";
homepage = "https://github.com/horazont/aioxmpp";
changelog = "https://github.com/horazont/aioxmpp/blob/${src.rev}/docs/api/changelog.rst";
license = lib.licenses.lgpl3Plus;
maintainers = with lib.maintainers; [ dotlambda ];
};