fa5436e0a7
GitOrigin-RevId: e8057b67ebf307f01bdcc8fba94d94f75039d1f6
27 lines
573 B
Nix
27 lines
573 B
Nix
{
|
|
lib,
|
|
fetchPypi,
|
|
buildPythonPackage,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "pymorphy3-dicts-uk";
|
|
version = "2.4.1.1.1663094765";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-s5RaNBNuGTgGzeZXuicdiKYHYedRN8E9E4qNFCqNEqw=";
|
|
};
|
|
|
|
# has no tests
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "pymorphy3_dicts_uk" ];
|
|
|
|
meta = with lib; {
|
|
description = "Ukrainian dictionaries for pymorphy3";
|
|
homepage = "https://github.com/no-plagiarism/pymorphy3-dicts";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ jboy ];
|
|
};
|
|
}
|