python311Packages.aprslib: untie from mox3

The mox3 package is unmaintained and incompatible with python3.11, and
aprslib only requires it for its test. This reenables the the aprs
integration in home-assistant.
This commit is contained in:
Martin Weinelt 2023-09-18 02:35:56 +02:00
parent b6bd677495
commit 3be90afab5

View File

@ -2,7 +2,6 @@
, buildPythonPackage
, fetchFromGitHub
, fetchpatch
, mox3
, pytestCheckHook
}:
@ -24,8 +23,9 @@ buildPythonPackage rec {
})
];
doCheck = false; # mox3 is disabled on python311
nativeCheckInputs = [
mox3
pytestCheckHook
];