forked from mirrors/nixpkgs
pythonPackages.google_cloud_translate: init at 1.3.1
This commit is contained in:
parent
b729904acc
commit
88942912f8
|
@ -0,0 +1,32 @@
|
|||
{ stdenv
|
||||
, buildPythonPackage
|
||||
, fetchPypi
|
||||
, google_api_core
|
||||
, google_cloud_core
|
||||
, pytest
|
||||
, mock
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "google-cloud-translate";
|
||||
version = "1.3.1";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "4420f5b320145bf097ca9a12b18ec27c067886e2832d181f268c46c3bcb0d2e4";
|
||||
};
|
||||
|
||||
checkInputs = [ pytest mock ];
|
||||
propagatedBuildInputs = [ google_api_core google_cloud_core ];
|
||||
|
||||
checkPhase = ''
|
||||
pytest tests/unit
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Google Cloud Translation API client library";
|
||||
homepage = https://github.com/GoogleCloudPlatform/google-cloud-python;
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
};
|
||||
}
|
|
@ -2502,6 +2502,8 @@ in {
|
|||
|
||||
google_cloud_trace = callPackage ../development/python-modules/google_cloud_trace { };
|
||||
|
||||
google_cloud_translate = callPackage ../development/python-modules/google_cloud_translate { };
|
||||
|
||||
google_resumable_media = callPackage ../development/python-modules/google_resumable_media { };
|
||||
|
||||
gpgme = toPythonModule (pkgs.gpgme.override { pythonSupport=true; });
|
||||
|
|
Loading…
Reference in a new issue