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:
parent
6221963deb
commit
10c3f73f0f
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user