Unverified Commit 2dace638 authored by Zane van Iperen's avatar Zane van Iperen
Browse files

python3Packages.assay: mark broken on python >= 3.11

parent bbe0dbf7
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
{ 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";
  };
}