depot/third_party/nixpkgs/pkgs/development/python-modules/langcodes/default.nix
Default email f34ce41345 Project import generated by Copybara.
GitOrigin-RevId: b73c2221a46c13557b1b3be9c2070cc42cf01eb3
2024-07-27 08:49:29 +02:00

50 lines
1,006 B
Nix

{
lib,
buildPythonPackage,
marisa-trie,
pythonOlder,
fetchPypi,
pytestCheckHook,
language-data,
setuptools,
setuptools-scm
}:
buildPythonPackage rec {
pname = "langcodes";
version = "3.4.0";
format = "pyproject";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
hash = "sha256-rlp30aAdDR6RhUpnGJCJK3zpq7YBq3Mn/FyHT4meGXk=";
};
nativeBuildInputs = [
setuptools
setuptools-scm
];
propagatedBuildInputs = [
language-data
marisa-trie
setuptools # pkg_resources import in language_data/util.py
];
nativeCheckInputs = [ pytestCheckHook ];
disabledTests = [
# AssertionError: assert 'Unknown language [aqk]' == 'Aninka'
"test_updated_iana"
];
pythonImportsCheck = [ "langcodes" ];
meta = with lib; {
description = "Python toolkit for working with and comparing the standardized codes for languages";
homepage = "https://github.com/georgkrause/langcodes";
license = licenses.mit;
};
}