10 buildPythonPackage rec {
11 pname = "language-data";
15 disabled = pythonOlder "3.8";
17 src = fetchFromGitHub {
18 owner = "georgkrause";
19 repo = "language_data";
20 rev = "refs/tags/v${version}";
21 hash = "sha256-TVWyDEDI6NBioc8DqhXzpLS22EFKsZ/nan2vfgFsieQ=";
24 build-system = [ setuptools-scm ];
26 dependencies = [ marisa-trie ];
28 pythonImportsCheck = [ "language_data" ];
34 description = "Supplement module for langcodes";
35 homepage = "https://github.com/georgkrause/language_data";
36 changelog = "https://github.com/georgkrause/language_data/releases/tag/v${version}";
37 license = licenses.mit;
38 maintainers = with maintainers; [ fab ];