python312Packages.fnllm: 0.0.11 -> 0.0.12 (#364582)
[NixPkgs.git] / pkgs / development / python-modules / yargy / default.nix
blobb4350676665f1a82dcdba111920204059f3c04fa
2   lib,
3   buildPythonPackage,
4   fetchPypi,
5   pymorphy2,
6   pytestCheckHook,
7 }:
9 buildPythonPackage rec {
10   pname = "yargy";
11   version = "0.16.0";
12   format = "setuptools";
14   src = fetchPypi {
15     inherit pname version;
16     hash = "sha256-yRfu+zKkDCPEa2yojWiScHLdAKuU6Q/V3GqwpitZtZM=";
17   };
19   propagatedBuildInputs = [ pymorphy2 ];
20   pythonImportsCheck = [ "yargy" ];
21   nativeCheckInputs = [ pytestCheckHook ];
22   pytestFlagsArray = [ "tests" ];
24   meta = with lib; {
25     description = "Rule-based facts extraction for Russian language";
26     homepage = "https://github.com/natasha/yargu";
27     license = licenses.mit;
28     maintainers = with maintainers; [ npatsakula ];
29   };