Unverified Commit f6ba6620 authored by Alyssa Ross's avatar Alyssa Ross
Browse files

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.
parent d1801a81
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, pythonOlder
, pythonAtLeast
, subunit
, testrepository
, testtools
@@ -13,7 +14,7 @@
buildPythonPackage rec {
  pname = "mox3";
  version = "1.1.0";
  disabled = pythonOlder "3.6";
  disabled = pythonOlder "3.6" || pythonAtLeast "3.11";

  src = fetchPypi {
    inherit pname version;