Skip to content

Commit

Permalink
python.pkgs.mecab-python3: fix build
Browse files Browse the repository at this point in the history
fallout of #54182
  • Loading branch information
Robert Schütz committed Mar 19, 2019
1 parent f4ffeaf commit 06bcb5c
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions pkgs/development/python-modules/mecab-python3/default.nix
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
{ lib
, buildPythonPackage
, mecab
, fetchPypi
, mecab
, swig
}:

buildPythonPackage rec {
Expand All @@ -13,7 +14,12 @@ buildPythonPackage rec {
sha256 = "5aca4d0d196161e41452b89921042c0e61a6b7e7e9373211c0c1c50d1809055d";
};

propagatedBuildInputs = [ mecab ];
nativeBuildInputs = [
mecab # for mecab-config
swig
];

buildInputs = [ mecab ];

meta = with lib; {
description = "A python wrapper for mecab: Morphological Analysis engine";
Expand Down

0 comments on commit 06bcb5c

Please sign in to comment.