Skip to content

Commit

Permalink
Merge pull request #224341 from fabaff/google-auth-asynctest
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Apr 11, 2023
2 parents 01e82e9 + a8ee4e3 commit b271f87
Showing 1 changed file with 14 additions and 16 deletions.
30 changes: 14 additions & 16 deletions pkgs/development/python-modules/google-auth/default.nix
Original file line number Diff line number Diff line change
@@ -1,41 +1,40 @@
{ stdenv
, lib
{ lib
, stdenv
, buildPythonPackage
, fetchPypi
, cachetools
, pyasn1-modules
, rsa
, six
, aiohttp
, cryptography
, pyopenssl
, pyu2f
, requests
, pythonOlder
, aioresponses
, asynctest
, cachetools
, cryptography
, fetchPypi
, flask
, freezegun
, grpcio
, mock
, oauth2client
, pyasn1-modules
, pyopenssl
, pytest-asyncio
, pytest-localserver
, pytestCheckHook
, pythonOlder
, pyu2f
, requests
, responses
, rsa
, six
, urllib3
}:

buildPythonPackage rec {
pname = "google-auth";
version = "2.16.1";
version = "2.17.1";
format = "setuptools";

disabled = pythonOlder "3.6";

src = fetchPypi {
inherit pname version;
hash = "sha256-X9FwmGvOa/17tchFxLg2LtseDLqQHgYhlug/i7XV0yw=";
hash = "sha256-jzebRrrTga0qC5id+wwTrSjTwqefJzSCE/iUah0V1Vo=";
};

propagatedBuildInputs = [
Expand Down Expand Up @@ -67,7 +66,6 @@ buildPythonPackage rec {

nativeCheckInputs = [
aioresponses
asynctest
flask
freezegun
grpcio
Expand Down

0 comments on commit b271f87

Please sign in to comment.