Merge pull request #191404 from risicle/ris-oauthlib-passthru-tests

python3Packages.oauthlib: add some key reverse dependencies to `passthru.tests`
This commit is contained in:
Robert Scott 2023-06-07 23:04:19 +01:00 committed by GitHub
commit f7fe2e5fae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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