summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/mecab-python3/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/mecab-python3/default.nix')
-rw-r--r--pkgs/development/python-modules/mecab-python3/default.nix31
1 files changed, 16 insertions, 15 deletions
diff --git a/pkgs/development/python-modules/mecab-python3/default.nix b/pkgs/development/python-modules/mecab-python3/default.nix
index f661fad48846..f448230821a7 100644
--- a/pkgs/development/python-modules/mecab-python3/default.nix
+++ b/pkgs/development/python-modules/mecab-python3/default.nix
@@ -1,10 +1,11 @@
-{ lib
-, buildPythonPackage
-, fetchPypi
-, mecab
-, swig
-, setuptools-scm
-, pythonOlder
+{
+ lib,
+ buildPythonPackage,
+ fetchPypi,
+ mecab,
+ swig,
+ setuptools-scm,
+ pythonOlder,
}:
buildPythonPackage rec {
@@ -26,20 +27,20 @@ buildPythonPackage rec {
setuptools-scm
];
- buildInputs = [
- mecab
- ];
+ buildInputs = [ mecab ];
doCheck = false;
- pythonImportsCheck = [
- "MeCab"
- ];
+ pythonImportsCheck = [ "MeCab" ];
meta = with lib; {
description = "A python wrapper for mecab: Morphological Analysis engine";
- homepage = "https://github.com/SamuraiT/mecab-python3";
+ homepage = "https://github.com/SamuraiT/mecab-python3";
changelog = "https://github.com/SamuraiT/mecab-python3/releases/tag/v${version}";
- license = with licenses; [ gpl2 lgpl21 bsd3 ]; # any of the three
+ license = with licenses; [
+ gpl2
+ lgpl21
+ bsd3
+ ]; # any of the three
};
}