nixpkgs/pkgs/development/python-modules/google-auth/default.nix

72 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv
, lib
, buildPythonPackage
, fetchpatch
, fetchPypi
, pytestCheckHook
, cachetools
, flask
, freezegun
, mock
, oauth2client
, pyasn1-modules
, pytest-localserver
, responses
, rsa
, six
, pyopenssl
}:
2017-12-20 22:45:36 +00:00
buildPythonPackage rec {
pname = "google-auth";
version = "1.28.0";
2017-12-20 22:45:36 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "9bd436d19ab047001a1340720d2b629eb96dd503258c524921ec2af3ee88a80e";
2017-12-20 22:45:36 +00:00
};
propagatedBuildInputs = [
cachetools
pyasn1-modules
rsa
six
pyopenssl
];
2017-12-20 22:45:36 +00:00
checkInputs = [
flask
freezegun
mock
oauth2client
pytestCheckHook
pytest-localserver
responses
];
pythonImportsCheck = [
"google.auth"
"google.oauth2"
];
disabledTests = lib.optionals stdenv.isDarwin [
"test_request_with_timeout_success"
"test_request_with_timeout_failure"
"test_request_headers"
"test_request_error"
"test_request_basic"
];
meta = with lib; {
description = "Google Auth Python Library";
longDescription = ''
This library simplifies using Googles various server-to-server
authentication mechanisms to access Google APIs.
'';
homepage = "https://github.com/googleapis/google-auth-library-python";
changelog = "https://github.com/googleapis/google-auth-library-python/blob/v${version}/CHANGELOG.md";
2017-12-20 22:45:36 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ SuperSandro2000 ];
2017-12-20 22:45:36 +00:00
};
}