python311Packages.asynctest: Disable

Has not caught up with async changes in 3.11 and hasn't seen any changes
since 2019.
This commit is contained in:
Martin Weinelt 2023-04-06 13:33:16 +02:00
parent 6221963deb
commit 10c3f73f0f
No known key found for this signature in database
GPG Key ID: 87C1E9888F856759

View File

@ -1,10 +1,11 @@
{ lib, buildPythonPackage, fetchPypi, pythonOlder, python }:
{ lib, buildPythonPackage, fetchPypi, pythonOlder, python, pythonAtLeast }:
buildPythonPackage rec {
pname = "asynctest";
version = "0.13.0";
disabled = pythonOlder "3.5";
# Unmaintained and incompatible python 3.11
disabled = pythonAtLeast "3.11";
src = fetchPypi {
inherit pname version;