Merge pull request #216155 from alyssais/mox3-python3.11

python311.pkgs.mox3: disable
This commit is contained in:
Robert Schütz 2023-02-13 17:50:52 -08:00 committed by GitHub
commit b4b8b150d2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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;