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

55 lines
1.1 KiB
Nix
Raw Normal View History

{ lib
, buildPythonPackage
, fetchpatch
, fetchPypi
, pytestCheckHook
, cachetools
, flask
, freezegun
, mock
, oauth2client
, pyasn1-modules
, pytest-localserver
, responses
, rsa
}:
2017-12-20 22:45:36 +00:00
buildPythonPackage rec {
pname = "google-auth";
version = "1.24.0";
2017-12-20 22:45:36 +00:00
src = fetchPypi {
inherit pname version;
sha256 = "0bmdqkyv8k8n6s8dss4zpbcq1cdxwicpb42kwybd02ia85mh43hb";
2017-12-20 22:45:36 +00:00
};
propagatedBuildInputs = [ pyasn1-modules cachetools rsa ];
2017-12-20 22:45:36 +00:00
checkInputs = [
flask
freezegun
mock
oauth2client
pytestCheckHook
pytest-localserver
responses
];
pythonImportsCheck = [
"google.auth"
"google.oauth2"
];
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
};
}