From 5cc97704e40df982ea0dee819168a01e66ed7270 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=BCtz?= Date: Mon, 2 Jul 2018 16:30:24 +0200 Subject: [PATCH] python.pkgs.google_gax: remove unused expression --- .../python-modules/google_gax/default.nix | 31 ------------------- 1 file changed, 31 deletions(-) delete mode 100644 pkgs/development/python-modules/google_gax/default.nix diff --git a/pkgs/development/python-modules/google_gax/default.nix b/pkgs/development/python-modules/google_gax/default.nix deleted file mode 100644 index daabba6c390a..000000000000 --- a/pkgs/development/python-modules/google_gax/default.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ stdenv, buildPythonPackage, fetchPypi -, google_auth, ply, protobuf, grpcio, requests -, googleapis_common_protos, dill, future, pytest, mock, unittest2 }: - -buildPythonPackage rec { - pname = "google-gax"; - version = "0.16.0"; - - src = fetchPypi { - inherit pname version; - sha256 = "1d844c56f942d98f12a1b0ecabe8a17d69bef41ff513edd97253bcde02ffd929"; - }; - - 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 ]; - }; -}