summaryrefslogtreecommitdiff
path: root/pkgs/development/python-modules/pymorphy2/dicts-ru.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/python-modules/pymorphy2/dicts-ru.nix')
-rw-r--r--pkgs/development/python-modules/pymorphy2/dicts-ru.nix23
1 files changed, 23 insertions, 0 deletions
diff --git a/pkgs/development/python-modules/pymorphy2/dicts-ru.nix b/pkgs/development/python-modules/pymorphy2/dicts-ru.nix
new file mode 100644
index 000000000000..bee9dd492479
--- /dev/null
+++ b/pkgs/development/python-modules/pymorphy2/dicts-ru.nix
@@ -0,0 +1,23 @@
+{ lib
+, fetchPypi
+, buildPythonPackage
+}:
+
+buildPythonPackage rec {
+ pname = "pymorphy2-dicts-ru";
+ version = "2.4.417127.4579844";
+
+ src = fetchPypi {
+ inherit pname version;
+ hash = "sha256-eMrQOtymBQIavTh6Oy61FchRuG6UaCoe8jVKLHT8wZY=";
+ };
+
+ pythonImportsCheck = [ "pymorphy2_dicts_ru" ];
+
+ meta = with lib; {
+ description = "Russian dictionaries for pymorphy2";
+ homepage = "https://github.com/kmike/pymorphy2-dicts/";
+ license = licenses.mit;
+ maintainers = with maintainers; [ danieldk ];
+ };
+}