2018-03-25 19:33:53 +01:00
|
|
|
|
{ lib
|
|
|
|
|
, buildPythonPackage
|
|
|
|
|
, marisa-trie
|
|
|
|
|
, pythonOlder
|
|
|
|
|
, fetchPypi
|
|
|
|
|
, nose
|
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
buildPythonPackage rec {
|
|
|
|
|
pname = "langcodes";
|
2020-10-16 13:30:59 +01:00
|
|
|
|
version = "2.1.0";
|
2020-05-03 19:09:54 +01:00
|
|
|
|
disabled = pythonOlder "3.3";
|
2018-03-25 19:33:53 +01:00
|
|
|
|
|
|
|
|
|
src = fetchPypi {
|
|
|
|
|
inherit pname version;
|
2020-10-16 13:30:59 +01:00
|
|
|
|
sha256 = "75bcaca8825e1a321965b136815dee53083c63314975e024ad0ccff8545e681f";
|
2018-03-25 19:33:53 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
propagatedBuildInputs = [ marisa-trie ];
|
|
|
|
|
|
|
|
|
|
checkInputs = [ nose ];
|
|
|
|
|
|
|
|
|
|
checkPhase = ''
|
|
|
|
|
nosetests
|
|
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
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";
|
2020-04-01 02:11:51 +01:00
|
|
|
|
homepage = "https://github.com/LuminosoInsight/langcodes";
|
2018-03-25 19:33:53 +01:00
|
|
|
|
license = licenses.mit;
|
|
|
|
|
maintainers = with maintainers; [ ixxie ];
|
|
|
|
|
};
|
|
|
|
|
}
|