lol

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

+14
+14
pkgs/development/python-modules/oauthlib/default.nix
··· 7 7 , pyjwt 8 8 , pytestCheckHook 9 9 , pythonOlder 10 + 11 + # for passthru.tests 12 + , django-allauth 13 + , django-oauth-toolkit 14 + , google-auth-oauthlib 15 + , requests-oauthlib 10 16 }: 11 17 12 18 buildPythonPackage rec { ··· 37 43 pythonImportsCheck = [ 38 44 "oauthlib" 39 45 ]; 46 + 47 + passthru.tests = { 48 + inherit 49 + django-allauth 50 + django-oauth-toolkit 51 + google-auth-oauthlib 52 + requests-oauthlib; 53 + }; 40 54 41 55 meta = with lib; { 42 56 description = "Generic, spec-compliant, thorough implementation of the OAuth request-signing logic";