mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 07:13:23 +01:00
google_gax: init at 0.15.16
This commit is contained in:
parent
32e9d32be5
commit
ebec27baa1
2 changed files with 32 additions and 0 deletions
30
pkgs/development/python-modules/google_gax/default.nix
Normal file
30
pkgs/development/python-modules/google_gax/default.nix
Normal file
|
@ -0,0 +1,30 @@
|
|||
{ stdenv, buildPythonPackage, fetchPypi
|
||||
, google_auth, ply, protobuf, grpcio, requests, googleapis_common_protos, dill, future, pytest, mock, unittest2 }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "google-gax";
|
||||
version = "0.15.16";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "0p1ribd2xy7a04wnjv12agkcdi6f9cpj838884hayx07p5g8v3ji";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [ google_auth ply protobuf grpcio requests googleapis_common_protos dill future ];
|
||||
checkInputs = [ pytest mock unittest2 ];
|
||||
|
||||
# Importing test__grpc_google_auth fails with "ModuleNotFoundError: No module named 'google_auth_httplib2'", where
|
||||
# that file would be is unclear to me so I just remove the test.
|
||||
postPatch = ''rm tests/test__grpc_google_auth.py'';
|
||||
|
||||
checkPhase = ''
|
||||
py.test
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Google API Extensions for Python (gax-python) tools based on gRPC and Google API conventions.";
|
||||
homepage = "http://gax-python.readthedocs.io/en/latest/";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ vanschelven ];
|
||||
};
|
||||
}
|
|
@ -9101,6 +9101,8 @@ in {
|
|||
|
||||
google_cloud_core = callPackage ../development/python-modules/google_cloud_core { };
|
||||
|
||||
google_gax = callPackage ../development/python-modules/google_gax { };
|
||||
|
||||
grammalecte = callPackage ../development/python-modules/grammalecte { };
|
||||
|
||||
greenlet = buildPythonPackage rec {
|
||||
|
|
Loading…
Reference in a new issue