mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
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:
commit
f7fe2e5fae
1 changed files with 14 additions and 0 deletions
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue