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