5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
25 lines
504 B
Nix
25 lines
504 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 = [ ];
|
|
};
|
|
}
|