python3Packages.assay: mark broken on python >= 3.11

https://github.com/brandon-rhodes/assay/issues/15
This commit is contained in:
Zane van Iperen 2023-05-11 20:35:48 +10:00
parent bbe0dbf7d2
commit 2dace638c9
No known key found for this signature in database
GPG Key ID: 68616B2D8AC4DCC5

View File

@ -1,4 +1,4 @@
{ lib, buildPythonPackage, fetchFromGitHub }:
{ lib, buildPythonPackage, fetchFromGitHub, pythonAtLeast }:
buildPythonPackage rec {
pname = "assay";
@ -18,5 +18,6 @@ buildPythonPackage rec {
description = "Attempt to write a Python testing framework I can actually stand";
license = licenses.mit;
maintainers = with maintainers; [ zane ];
broken = pythonAtLeast "3.11";
};
}