567e8dfd8e
This commit was created by a combination of scripts and tools: - an ast-grep script to prefix things in meta with `lib.`, - a modified nixf-diagnose / nixf combination to remove unused `with lib;`, and - regular nixfmt. Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
44 lines
781 B
Nix
44 lines
781 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
pymorphy2,
|
|
razdel,
|
|
navec,
|
|
slovnet,
|
|
yargy,
|
|
ipymarkup,
|
|
pytestCheckHook,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "natasha";
|
|
version = "1.6.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
hash = "sha256-Rgguazgq06a8B9jeRnfHD5VTR+Xrd+8OCsQUfaGLEq0=";
|
|
};
|
|
|
|
propagatedBuildInputs = [
|
|
pymorphy2
|
|
navec
|
|
razdel
|
|
slovnet
|
|
yargy
|
|
ipymarkup
|
|
];
|
|
|
|
nativeCheckInputs = [ pytestCheckHook ];
|
|
enabledTestPaths = [ "tests/" ];
|
|
pythonImportsCheck = [ "natasha" ];
|
|
|
|
meta = {
|
|
description = "NLP framework for Russian language";
|
|
homepage = "https://github.com/natasha/natasha";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ npatsakula ];
|
|
};
|
|
}
|