python39Packages.babelfish: update meta, add import check, disable tests

This commit is contained in:
Sandro Jäckel 2021-08-27 03:10:13 +02:00
parent be3fca0d2a
commit 4608fefb32
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5

View File

@ -11,9 +11,15 @@ buildPythonPackage rec {
propagatedBuildInputs = [ setuptools ];
# no tests executed
doCheck = false;
pythonImportsCheck = [ "babelfish" ];
meta = with lib; {
homepage = "https://pypi.python.org/pypi/babelfish";
description = "A module to work with countries and languages";
license = licenses.bsd3;
maintainers = with maintainers; [ ];
};
}