about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/google_auth/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/google_auth/default.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/google_auth/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/google_auth/default.nix b/nixpkgs/pkgs/development/python-modules/google_auth/default.nix
new file mode 100644
index 000000000000..b0b6bfaa5ef9
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/google_auth/default.nix
@@ -0,0 +1,31 @@
+{ stdenv, buildPythonPackage, fetchPypi
+, pytest, mock, oauth2client, flask, requests, urllib3, pytest-localserver, six, pyasn1-modules, cachetools, rsa }:
+
+buildPythonPackage rec {
+  pname = "google-auth";
+  version = "1.6.3";
+
+  src = fetchPypi {
+    inherit pname version;
+    sha256 = "0f7c6a64927d34c1a474da92cfc59e552a5d3b940d3266606c6a28b72888b9e4";
+  };
+
+  checkInputs = [ pytest mock oauth2client flask requests urllib3 pytest-localserver ];
+  propagatedBuildInputs = [ six pyasn1-modules cachetools rsa ];
+
+  # The removed test tests the working together of google_auth and google's https://pypi.python.org/pypi/oauth2client
+  # but the latter is deprecated. Since it is not currently part of the nixpkgs collection and deprecated it will
+  # probably never be. We just remove the test to make the tests work again.
+  postPatch = ''rm tests/test__oauth2client.py'';
+
+  checkPhase = ''
+    py.test
+  '';
+
+  meta = with stdenv.lib; {
+    description = "This library simplifies using Google’s various server-to-server authentication mechanisms to access Google APIs.";
+    homepage = "https://google-auth.readthedocs.io/en/latest/";
+    license = licenses.asl20;
+    maintainers = with maintainers; [ vanschelven ];
+  };
+}