{ lib , stdenv , fetchFromGitHub , buildPythonPackage , pythonOlder , setuptools , regex }: buildPythonPackage rec { pname = "somajo"; version = "2.3.1"; pyproject = true; disabled = pythonOlder "3.7"; src = fetchFromGitHub { owner = "tsproisl"; repo = "SoMaJo"; rev = "refs/tags/v${version}"; hash = "sha256-3A2et4pl92LsRtEx2Ki8Soz3n1nZEGQGPc3ZIBDojNM="; }; nativeBuildInputs = [ setuptools ]; propagatedBuildInputs = [ regex ]; # loops forever doCheck = !stdenv.isDarwin; pythonImportsCheck = [ "somajo" ]; meta = with lib; { description = "Tokenizer and sentence splitter for German and English web texts"; homepage = "https://github.com/tsproisl/SoMaJo"; license = licenses.gpl3Plus; maintainers = with maintainers; [ ]; }; }