about summary refs log tree commit diff
path: root/pkgs/development/python-modules/mecab-python3
diff options
context:
space:
mode:
authorMatan Shenhav <matan@fluxcraft.net>2018-03-25 20:37:36 +0200
committerRobert Schütz <robert.schuetz@stud.uni-heidelberg.de>2018-04-05 00:02:56 +0200
commit3d93a9b1d2139efd74386754ca30a3972b7e5b2c (patch)
tree34e35d96b3a3c084bb041044c5b792b00972bad9 /pkgs/development/python-modules/mecab-python3
parent7513208cd33e87eb1d66e4663232a3242e6818dd (diff)
downloadnixlib-3d93a9b1d2139efd74386754ca30a3972b7e5b2c.tar
nixlib-3d93a9b1d2139efd74386754ca30a3972b7e5b2c.tar.gz
nixlib-3d93a9b1d2139efd74386754ca30a3972b7e5b2c.tar.bz2
nixlib-3d93a9b1d2139efd74386754ca30a3972b7e5b2c.tar.lz
nixlib-3d93a9b1d2139efd74386754ca30a3972b7e5b2c.tar.xz
nixlib-3d93a9b1d2139efd74386754ca30a3972b7e5b2c.tar.zst
nixlib-3d93a9b1d2139efd74386754ca30a3972b7e5b2c.zip
pythonPackages.mecab-python3: init at 0.7
Diffstat (limited to 'pkgs/development/python-modules/mecab-python3')
-rw-r--r--pkgs/development/python-modules/mecab-python3/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/mecab-python3/default.nix b/pkgs/development/python-modules/mecab-python3/default.nix
new file mode 100644
index 000000000000..110d1a57c826
--- /dev/null
+++ b/pkgs/development/python-modules/mecab-python3/default.nix
@@ -0,0 +1,24 @@
+{ lib
+, buildPythonPackage
+, mecab
+, fetchPypi
+}:
+
+buildPythonPackage rec {
+  pname = "mecab-python3";
+  version = "0.7";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "007dg4f5fby2yl7cc44x6xwvcrf2w2ifmn0rmk56ss33mhs8l6qy";
+  };
+
+  propagatedBuildInputs = [ mecab ];
+
+  meta = with lib; {
+    description = "A python wrapper for mecab: Morphological Analysis engine";
+    homepage =  https://github.com/LuminosoInsight/wordfreq/;
+    license = licenses.bsd0;
+    maintainers = with maintainers; [ ixxie ];
+  };
+}