13 buildPythonPackage rec {
14 pname = "unicode-rbnf";
18 src = fetchFromGitHub {
20 repo = "unicode-rbnf";
22 hash = "sha256-PquPoiaO1rEDMz7jaN9MUB0UQGH07M0O9mlrUCsfhm4=";
25 nativeBuildInputs = [ setuptools ];
27 pythonImportsCheck = [ "unicode_rbnf" ];
29 nativeCheckInputs = [ pytestCheckHook ];
32 changelog = "https://github.com/rhasspy/unicode-rbnf/blob/v${version}/CHANGELOG.md";
33 description = "Pure Python implementation of ICU's rule-based number format engine";
34 homepage = "https://github.com/rhasspy/unicode-rbnf";
35 license = licenses.mit;
36 maintainers = with maintainers; [ hexa ];