bcb2f287e1
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
31 lines
637 B
Nix
31 lines
637 B
Nix
{
|
|
lib,
|
|
buildPythonPackage,
|
|
fetchPypi,
|
|
setuptools,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "babelfish";
|
|
version = "0.6.0";
|
|
format = "setuptools";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "2dadfadd1b205ca5fa5dc9fa637f5b7933160a0418684c7c46a7a664033208a2";
|
|
};
|
|
|
|
propagatedBuildInputs = [ setuptools ];
|
|
|
|
# no tests executed
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [ "babelfish" ];
|
|
|
|
meta = with lib; {
|
|
homepage = "https://pypi.python.org/pypi/babelfish";
|
|
description = "Module to work with countries and languages";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ ];
|
|
};
|
|
}
|