python3Packages.google_auth: 1.20.1 -> 1.22.1
This commit is contained in:
parent
b6421926db
commit
618da3917d
@ -1,29 +1,19 @@
|
|||||||
{ stdenv, buildPythonPackage, fetchpatch, fetchPypi
|
{ stdenv, buildPythonPackage, fetchpatch, fetchPypi, pythonOlder
|
||||||
, cachetools
|
, pytestCheckHook, cachetools, flask, freezegun, mock, oauth2client
|
||||||
, flask
|
, pyasn1-modules, pytest, pytest-localserver, requests, responses, rsa
|
||||||
, freezegun
|
, setuptools, six, urllib3 }:
|
||||||
, mock
|
|
||||||
, oauth2client
|
|
||||||
, pyasn1-modules
|
|
||||||
, pytest
|
|
||||||
, pytest-localserver
|
|
||||||
, requests
|
|
||||||
, responses
|
|
||||||
, rsa
|
|
||||||
, setuptools
|
|
||||||
, six
|
|
||||||
, urllib3
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "google-auth";
|
pname = "google-auth";
|
||||||
version = "1.20.1";
|
version = "1.22.1";
|
||||||
|
|
||||||
src = fetchPypi {
|
src = fetchPypi {
|
||||||
inherit pname version;
|
inherit pname version;
|
||||||
sha256 = "2f34dd810090d0d4c9d5787c4ad7b4413d1fbfb941e13682c7a2298d3b6cdcc8";
|
sha256 = "1fs448jcx2cbpk0nq3picndfryjsakmd9allggvh7mrqjiw723ww";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
disabled = pythonOlder "3.5";
|
||||||
|
|
||||||
propagatedBuildInputs = [ six pyasn1-modules cachetools rsa setuptools ];
|
propagatedBuildInputs = [ six pyasn1-modules cachetools rsa setuptools ];
|
||||||
|
|
||||||
checkInputs = [
|
checkInputs = [
|
||||||
@ -31,17 +21,13 @@ buildPythonPackage rec {
|
|||||||
freezegun
|
freezegun
|
||||||
mock
|
mock
|
||||||
oauth2client
|
oauth2client
|
||||||
pytest
|
pytestCheckHook
|
||||||
pytest-localserver
|
pytest-localserver
|
||||||
requests
|
requests
|
||||||
responses
|
responses
|
||||||
urllib3
|
urllib3
|
||||||
];
|
];
|
||||||
|
|
||||||
checkPhase = ''
|
|
||||||
py.test
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Google Auth Python Library";
|
description = "Google Auth Python Library";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
@ -49,7 +35,8 @@ buildPythonPackage rec {
|
|||||||
authentication mechanisms to access Google APIs.
|
authentication mechanisms to access Google APIs.
|
||||||
'';
|
'';
|
||||||
homepage = "https://github.com/googleapis/google-auth-library-python";
|
homepage = "https://github.com/googleapis/google-auth-library-python";
|
||||||
changelog = "https://github.com/googleapis/google-auth-library-python/blob/v${version}/CHANGELOG.md";
|
changelog =
|
||||||
|
"https://github.com/googleapis/google-auth-library-python/blob/v${version}/CHANGELOG.md";
|
||||||
# Documentation: https://googleapis.dev/python/google-auth/latest/index.html
|
# Documentation: https://googleapis.dev/python/google-auth/latest/index.html
|
||||||
license = licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user