python312Packages.language-data: 1.0.1 -> 1.2.0

Diff: https://github.com/georgkrause/language_data/compare/refs/tags/v1.0.1...v1.2.0

Changelog: https://github.com/georgkrause/language_data/releases/tag/v1.2.0

+11 -15
+11 -15
pkgs/development/python-modules/language-data/default.nix
··· 3 buildPythonPackage, 4 fetchFromGitHub, 5 marisa-trie, 6 - poetry-core, 7 pythonOlder, 8 - setuptools, 9 }: 10 11 buildPythonPackage rec { 12 pname = "language-data"; 13 - version = "1.0.1"; 14 pyproject = true; 15 16 - disabled = pythonOlder "3.6"; 17 18 src = fetchFromGitHub { 19 - owner = "rspeer"; 20 repo = "language_data"; 21 rev = "refs/tags/v${version}"; 22 - hash = "sha256-51TUVHXPHG6ofbnxI6+o5lrtr+QCIpGKu+OjDK3l7Mc="; 23 }; 24 25 - build-system = [ 26 - poetry-core 27 - setuptools 28 - ]; 29 30 dependencies = [ marisa-trie ]; 31 32 - # Module has no tests 33 doCheck = false; 34 35 - pythonImportsCheck = [ "language_data" ]; 36 - 37 meta = with lib; { 38 description = "Supplement module for langcodes"; 39 - homepage = "https://github.com/rspeer/language_data"; 40 - changelog = "https://github.com/rspeer/language_data/releases/tag/v${version}"; 41 license = licenses.mit; 42 maintainers = with maintainers; [ fab ]; 43 };
··· 3 buildPythonPackage, 4 fetchFromGitHub, 5 marisa-trie, 6 pythonOlder, 7 + setuptools-scm, 8 }: 9 10 buildPythonPackage rec { 11 pname = "language-data"; 12 + version = "1.2.0"; 13 pyproject = true; 14 15 + disabled = pythonOlder "3.8"; 16 17 src = fetchFromGitHub { 18 + owner = "georgkrause"; 19 repo = "language_data"; 20 rev = "refs/tags/v${version}"; 21 + hash = "sha256-TVWyDEDI6NBioc8DqhXzpLS22EFKsZ/nan2vfgFsieQ="; 22 }; 23 24 + build-system = [ setuptools-scm ]; 25 26 dependencies = [ marisa-trie ]; 27 28 + pythonImportsCheck = [ "language_data" ]; 29 + 30 + # No unittests 31 doCheck = false; 32 33 meta = with lib; { 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 ]; 39 };