about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/babelfish/default.nix
blob: c8245a15c7f03722b323af2c24a3097db2d89799 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, buildPythonPackage, fetchPypi, setuptools }:

buildPythonPackage rec {
  pname = "babelfish";
  version = "0.5.5";

  src = fetchPypi {
    inherit pname version;
    sha256 = "8380879fa51164ac54a3e393f83c4551a275f03617f54a99d70151358e444104";
  };

  propagatedBuildInputs = [ setuptools ];

  meta = with stdenv.lib; {
    homepage = https://pypi.python.org/pypi/babelfish;
    description = "A module to work with countries and languages";
    license = licenses.bsd3;
  };
}