My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pymorphy2/dicts-ru.nix

23 lines
517 B

{ 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; [ ];
};
}