Files
nixpkgs/pkgs/development/python-modules/oauthlib/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

72 lines
1.4 KiB
Nix

{
lib,
blinker,
buildPythonPackage,
cryptography,
fetchFromGitHub,
mock,
pyjwt,
pytestCheckHook,
setuptools,
# for passthru.tests
django-allauth,
django-oauth-toolkit,
google-auth-oauthlib,
requests-oauthlib,
}:
buildPythonPackage rec {
pname = "oauthlib";
version = "3.3.1";
pyproject = true;
src = fetchFromGitHub {
owner = "oauthlib";
repo = "oauthlib";
tag = "v${version}";
hash = "sha256-ZTmR+pTNQaRQMnUA+8hXM5VACRd8Hn62KTNooy5FQyk=";
};
nativeBuildInputs = [ setuptools ];
optional-dependencies = {
rsa = [ cryptography ];
signedtoken = [
cryptography
pyjwt
];
signals = [ blinker ];
};
nativeCheckInputs = [
mock
pytestCheckHook
]
++ lib.concatAttrValues optional-dependencies;
disabledTests = [
# too narrow time comparison issues
"test_fetch_access_token"
];
pythonImportsCheck = [ "oauthlib" ];
passthru.tests = {
inherit
django-allauth
django-oauth-toolkit
google-auth-oauthlib
requests-oauthlib
;
};
meta = {
changelog = "https://github.com/oauthlib/oauthlib/blob/${src.tag}/CHANGELOG.rst";
description = "Generic, spec-compliant, thorough implementation of the OAuth request-signing logic";
homepage = "https://github.com/oauthlib/oauthlib";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ prikhi ];
};
}