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