python3Packages.oauthlib: add some key reverse dependencies to passthru.tests

This commit is contained in:
Robert Scott 2022-09-15 23:26:43 +01:00
parent 0ee5552b53
commit f9dee9b385

View File

@ -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";