nixpkgs/pkgs/development/python-modules/google_auth/default.nix

45 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, buildPythonPackage, fetchpatch, fetchPypi, pythonOlder
, pytestCheckHook, cachetools, flask, freezegun, mock, oauth2client
, pyasn1-modules, pytest, pytest-localserver, requests, responses, rsa
, setuptools, six, urllib3 }:
2017-12-20 22:45:36 +00:00
buildPythonPackage rec {
pname = "google-auth";
version = "1.23.0";
2017-12-20 22:45:36 +00:00
src = fetchPypi {
inherit pname version;
2020-11-09 13:49:10 +00:00
sha256 = "5176db85f1e7e837a646cd9cede72c3c404ccf2e3373d9ee14b2db88febad440";
2017-12-20 22:45:36 +00:00
};
disabled = pythonOlder "3.5";
propagatedBuildInputs = [ six pyasn1-modules cachetools rsa setuptools ];
2017-12-20 22:45:36 +00:00
checkInputs = [
flask
freezegun
mock
oauth2client
pytestCheckHook
pytest-localserver
requests
responses
urllib3
];
2017-12-20 22:45:36 +00:00
meta = with stdenv.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";
# Documentation: https://googleapis.dev/python/google-auth/latest/index.html
2017-12-20 22:45:36 +00:00
license = licenses.asl20;
maintainers = with maintainers; [ ];
2017-12-20 22:45:36 +00:00
};
}