depot/third_party/nixpkgs/pkgs/development/python-modules/langcodes/default.nix
Default email 9c6d255489 Project import generated by Copybara.
GitOrigin-RevId: 8133b9cb5f7c00d4fe31c8c2c4b525bc2650bfc0
2020-10-16 20:44:37 +00:00

33 lines
744 B
Nix
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{ lib
, buildPythonPackage
, marisa-trie
, pythonOlder
, fetchPypi
, nose
}:
buildPythonPackage rec {
pname = "langcodes";
version = "2.1.0";
disabled = pythonOlder "3.3";
src = fetchPypi {
inherit pname version;
sha256 = "75bcaca8825e1a321965b136815dee53083c63314975e024ad0ccff8545e681f";
};
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";
homepage = "https://github.com/LuminosoInsight/langcodes";
license = licenses.mit;
maintainers = with maintainers; [ ixxie ];
};
}