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