python310Packages.python-crfsuite: mark as broken

This commit is contained in:
Martin Weinelt 2022-03-20 03:56:58 +01:00
parent 4ba2b7b94e
commit 2f4e0dfb09
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -2,6 +2,7 @@
, buildPythonPackage , buildPythonPackage
, fetchPypi , fetchPypi
, pytestCheckHook , pytestCheckHook
, pythonAtLeast
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -32,5 +33,6 @@ buildPythonPackage rec {
homepage = "https://github.com/scrapinghub/python-crfsuite"; homepage = "https://github.com/scrapinghub/python-crfsuite";
license = licenses.mit; license = licenses.mit;
maintainers = teams.tts.members; maintainers = teams.tts.members;
broken = pythonAtLeast "3.10"; # https://github.com/scrapinghub/python-crfsuite/issues/130
}; };
} }