lol

python311.pkgs.mox3: disable

Uses APIs removed in Python 3.11, for example this exception in
aprslib's tests:

E AttributeError: module 'inspect' has no attribute 'getargspec'

/nix/store/x6ps6s9k2i1dcnb9jf1kbfgghgf6k53f-python3.11-mox3-1.1.0/lib/python3.11/site-packages/mox3/mox.py:909: AttributeError

Unmaintained upstream.

+2 -1
+2 -1
pkgs/development/python-modules/mox3/default.nix
··· 2 2 , buildPythonPackage 3 3 , fetchPypi 4 4 , pythonOlder 5 + , pythonAtLeast 5 6 , subunit 6 7 , testrepository 7 8 , testtools ··· 13 14 buildPythonPackage rec { 14 15 pname = "mox3"; 15 16 version = "1.1.0"; 16 - disabled = pythonOlder "3.6"; 17 + disabled = pythonOlder "3.6" || pythonAtLeast "3.11"; 17 18 18 19 src = fetchPypi { 19 20 inherit pname version;