1{ stdenv, buildPythonPackage, fetchPypi }:
2
3buildPythonPackage rec {
4 pname = "babelfish";
5 version = "0.5.5";
6
7 src = fetchPypi {
8 inherit pname version;
9 sha256 = "8380879fa51164ac54a3e393f83c4551a275f03617f54a99d70151358e444104";
10 };
11
12 meta = with stdenv.lib; {
13 homepage = https://pypi.python.org/pypi/babelfish;
14 description = "A module to work with countries and languages";
15 license = licenses.bsd3;
16 };
17}