6f2ce2a65e
I currently do not have much time to work on nixpkgs. Remove myself as a maintainer from a bunch of packages to avoid that people are waiting on me for a review.
24 lines
517 B
Nix
24 lines
517 B
Nix
{ 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; [ ];
|
|
};
|
|
}
|