depot/third_party/nixpkgs/pkgs/development/python-modules/google-cloud-translate/default.nix
Default email d2947cfef0 Project import generated by Copybara.
GitOrigin-RevId: 598f83ebeb2235435189cf84d844b8b73e858e0f
2022-10-06 20:32:54 +02:00

59 lines
1.1 KiB
Nix

{ lib
, buildPythonPackage
, fetchPypi
, pytestCheckHook
, google-api-core
, google-cloud-core
, google-cloud-testutils
, libcst
, mock
, proto-plus
, pytest-asyncio
, pythonOlder
}:
buildPythonPackage rec {
pname = "google-cloud-translate";
version = "3.8.3";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchPypi {
inherit pname version;
hash = "sha256-vaz2UAm3kRliZdog/OxEDYvtYnB8tK7JH+4P7ZgTSpc=";
};
propagatedBuildInputs = [
google-api-core
google-cloud-core
libcst
proto-plus
];
checkInputs = [
google-cloud-testutils
mock
pytestCheckHook
pytest-asyncio
];
preCheck = ''
# prevent shadowing imports
rm -r google
'';
pythonImportsCheck = [
"google.cloud.translate"
"google.cloud.translate_v2"
"google.cloud.translate_v3"
"google.cloud.translate_v3beta1"
];
meta = with lib; {
description = "Google Cloud Translation API client library";
homepage = "https://github.com/googleapis/python-translate";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
};
}