python38Packages.macropy, python39Packages.macropy: mark as broken

This commit is contained in:
Robert T. McGibbon 2020-12-26 15:56:18 -05:00
parent 7543a5bf71
commit ca1f0aaa2d

View File

@ -3,6 +3,7 @@
, fetchFromGitHub , fetchFromGitHub
, python , python
, isPy27 , isPy27
, pythonAtLeast
, pinqSupport ? false, sqlalchemy , pinqSupport ? false, sqlalchemy
, pyxlSupport ? false, pyxl3 , pyxlSupport ? false, pyxl3
}: }:
@ -34,5 +35,6 @@ buildPythonPackage rec {
description = "Macros in Python: quasiquotes, case classes, LINQ and more"; description = "Macros in Python: quasiquotes, case classes, LINQ and more";
license = licenses.mit; license = licenses.mit;
maintainers = [ maintainers.costrouc ]; maintainers = [ maintainers.costrouc ];
broken = pythonAtLeast "3.8"; # see https://github.com/lihaoyi/macropy/issues/103
}; };
} }