Unverified Commit 347f9cbe authored by Malo Bourgon's avatar Malo Bourgon
Browse files

python312Packages.stups-fullstop: disable for Python >= 3.11

parent 54695249
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -15,7 +15,7 @@ buildPythonPackage rec {
  pname = "stups-fullstop";
  version = "1.1.31";
  format = "setuptools";
  disabled = !isPy3k;
  disabled = !isPy3k || pythonAtLeast "3.11"; # Uses regex patterns deprecated in 3.9, errors in 3.11+

  src = fetchFromGitHub {
    owner = "zalando-stups";
@@ -44,8 +44,5 @@ buildPythonPackage rec {
    homepage = "https://github.com/zalando-stups/stups-fullstop-cli";
    license = licenses.asl20;
    maintainers = [ maintainers.mschuwalow ];
    # Uses regex patterns deprecated in 3.9:
    #     re.error: global flags not at the start of the expression at ...
    broken = pythonAtLeast "3.11";
  };
}