pythonPackages.mecab-python3: fix build, disable tests

This commit is contained in:
Frederik Rietdijk 2019-06-15 10:44:56 +02:00
parent b7b6388db6
commit a6b2d4b82c

View File

@ -3,6 +3,7 @@
, fetchPypi , fetchPypi
, mecab , mecab
, swig , swig
, setuptools_scm
}: }:
buildPythonPackage rec { buildPythonPackage rec {
@ -17,10 +18,13 @@ buildPythonPackage rec {
nativeBuildInputs = [ nativeBuildInputs = [
mecab # for mecab-config mecab # for mecab-config
swig swig
setuptools_scm
]; ];
buildInputs = [ mecab ]; buildInputs = [ mecab ];
doCheck = false;
meta = with lib; { meta = with lib; {
description = "A python wrapper for mecab: Morphological Analysis engine"; description = "A python wrapper for mecab: Morphological Analysis engine";
homepage = https://github.com/SamuraiT/mecab-python3; homepage = https://github.com/SamuraiT/mecab-python3;