python3Packages.langcodes: add language-data
This commit is contained in:
@@ -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 ];
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user