depot/third_party/nixpkgs/pkgs/development/python-modules/google-auth-oauthlib/default.nix
Default email 22017988c6 Project import generated by Copybara.
GitOrigin-RevId: c777cdf5c564015d5f63b09cc93bef4178b19b01
2022-04-27 11:35:20 +02:00

50 lines
958 B
Nix

{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, click
, mock
, pytestCheckHook
, google-auth
, requests-oauthlib
, pythonOlder
}:
buildPythonPackage rec {
pname = "google-auth-oauthlib";
version = "0.5.1";
format = "setuptools";
disabled = pythonOlder "3.6";
src = fetchPypi {
inherit pname version;
sha256 = "sha256-MFlrgk/GgI/ayi8EjkmYzED7SzWZ6upm0o3HCFs2xbg=";
};
propagatedBuildInputs = [
google-auth
requests-oauthlib
];
checkInputs = [
click
mock
pytestCheckHook
];
disabledTests = lib.optionals stdenv.isDarwin [
"test_run_local_server"
];
pythonImportsCheck = [
"google_auth_oauthlib"
];
meta = with lib; {
description = "Google Authentication Library: oauthlib integration";
homepage = "https://github.com/GoogleCloudPlatform/google-auth-library-python-oauthlib";
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 terlar ];
};
}