1{
2 lib,
3 buildPythonPackage,
4 fetchPypi,
5 setuptools,
6}:
7
8buildPythonPackage rec {
9 pname = "babelfish";
10 version = "0.6.0";
11 format = "setuptools";
12
13 src = fetchPypi {
14 inherit pname version;
15 sha256 = "2dadfadd1b205ca5fa5dc9fa637f5b7933160a0418684c7c46a7a664033208a2";
16 };
17
18 propagatedBuildInputs = [ setuptools ];
19
20 # no tests executed
21 doCheck = false;
22
23 pythonImportsCheck = [ "babelfish" ];
24
25 meta = with lib; {
26 homepage = "https://pypi.python.org/pypi/babelfish";
27 description = "A module to work with countries and languages";
28 license = licenses.bsd3;
29 maintainers = with maintainers; [ ];
30 };
31}