python3Packages.langcodes: add language-data

This commit is contained in:
Fabian Affolter 2021-11-29 22:54:57 +01:00 committed by Jonathan Ringer
parent f9ee9559d5
commit 307559ca0f
No known key found for this signature in database
GPG key ID: 5C841D3CFDFEC4E0

View file

@ -3,30 +3,48 @@
, marisa-trie
, pythonOlder
, fetchPypi
, nose
, poetry-core
, pytestCheckHook
, language-data
}:
buildPythonPackage rec {
pname = "langcodes";
version = "3.3.0";
disabled = pythonOlder "3.3";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "794d07d5a28781231ac335a1561b8442f8648ca07cd518310aeb45d6f0807ef6";
};
propagatedBuildInputs = [ marisa-trie ];
nativeBuildInputs = [
poetry-core
];
checkInputs = [ nose ];
propagatedBuildInputs = [
language-data
marisa-trie
];
checkPhase = ''
nosetests
'';
checkInputs = [
pytestCheckHook
];
disabledTests = [
# AssertionError: assert 'Unknown language [aqk]' == 'Aninka'
"test_updated_iana"
];
pythonImportsCheck = [
"langcodes"
];
meta = with lib; {
description = "A toolkit for working with and comparing the standardized codes for languages, such as en for English or es for Spanish";
homepage = "https://github.com/LuminosoInsight/langcodes";
description = "Python toolkit for working with and comparing the standardized codes for languages";
homepage = "https://github.com/LuminosoInsight/langcodes";
license = licenses.mit;
maintainers = with maintainers; [ ixxie ];
};