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

This commit is contained in:
Sandro Jäckel
2021-02-02 13:37:56 +01:00
parent c51d050d7c
commit 98ce12a8fe
@@ -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";