diff --git a/pkgs/development/python-modules/oauthlib/default.nix b/pkgs/development/python-modules/oauthlib/default.nix index e1d6bbc13070..424e35c5d3a9 100644 --- a/pkgs/development/python-modules/oauthlib/default.nix +++ b/pkgs/development/python-modules/oauthlib/default.nix @@ -7,6 +7,12 @@ , pyjwt , pytestCheckHook , pythonOlder + +# for passthru.tests +, django-allauth +, django-oauth-toolkit +, google-auth-oauthlib +, requests-oauthlib }: buildPythonPackage rec { @@ -38,6 +44,14 @@ buildPythonPackage rec { "oauthlib" ]; + passthru.tests = { + inherit + django-allauth + django-oauth-toolkit + google-auth-oauthlib + requests-oauthlib; + }; + meta = with lib; { description = "Generic, spec-compliant, thorough implementation of the OAuth request-signing logic"; homepage = "https://github.com/idan/oauthlib";