10 buildPythonPackage rec {
13 format = "setuptools";
14 disabled = pythonOlder "3.5";
16 # provides no sdist on pypi
17 src = fetchFromGitHub {
18 owner = "nipunsadvilkar";
21 sha256 = "12p7qm237z56hw4zr03n8rycgfymhki2m9c4w3ib0mvqq122a5dp";
29 doCheck = false; # requires pyconll and blingfire
31 pythonImportsCheck = [ "pysbd" ];
34 description = "Pysbd (Python Sentence Boundary Disambiguation) is a rule-based sentence boundary detection that works out-of-the-box across many languages";
35 homepage = "https://github.com/nipunsadvilkar/pySBD";
36 license = licenses.mit;
37 maintainers = teams.tts.members;