Commit 8328c914 authored by Ryan Hendrickson's avatar Ryan Hendrickson
Browse files

python311Packages.contextlib2: disable

parent 93a8a876
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -2,6 +2,7 @@
, buildPythonPackage
, fetchPypi
, python
, pythonAtLeast
, pythonOlder
, unittestCheckHook
}:
@@ -11,7 +12,9 @@ buildPythonPackage rec {
  version = "21.6.0";
  format = "setuptools";

  disabled = pythonOlder "3.6";
  # Python 3.11 not currently supported
  # https://github.com/jazzband/contextlib2/issues/43
  disabled = pythonOlder "3.6" || pythonAtLeast "3.11";

  src = fetchPypi {
    inherit pname version;