pythonPackages.somajo: Disable tests on darwin because they are stuck

This commit is contained in:
Sandro Jäckel 2021-01-30 23:00:55 +01:00
parent c51d050d7c
commit 98ce12a8fe
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -1,4 +1,4 @@
{ pkgs, lib, fetchFromGitHub, buildPythonPackage, isPy3k, regex }: { lib, stdenv, fetchFromGitHub, buildPythonPackage, isPy3k, regex }:
buildPythonPackage rec { buildPythonPackage rec {
pname = "SoMaJo"; pname = "SoMaJo";
@ -14,6 +14,9 @@ buildPythonPackage rec {
propagatedBuildInputs = [ regex ]; propagatedBuildInputs = [ regex ];
# loops forever
doCheck = !stdenv.isDarwin;
meta = with lib; { meta = with lib; {
description = "Tokenizer and sentence splitter for German and English web texts"; description = "Tokenizer and sentence splitter for German and English web texts";
homepage = "https://github.com/tsproisl/SoMaJo"; homepage = "https://github.com/tsproisl/SoMaJo";