nixpkgs/pkgs/development/python-modules/oauthlib/default.nix
2022-12-04 18:05:37 +01:00

48 lines
841 B
Nix

{ lib
, blinker
, buildPythonPackage
, cryptography
, fetchFromGitHub
, mock
, pyjwt
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "oauthlib";
version = "3.2.2";
format = "setuptools";
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
hash = "sha256-KADS1pEaLYi86LEt2VVuz8FVTBANzxC8EeQLgGMxuBU=";
};
propagatedBuildInputs = [
blinker
cryptography
pyjwt
];
checkInputs = [
mock
pytestCheckHook
];
pythonImportsCheck = [
"oauthlib"
];
meta = with lib; {
description = "Generic, spec-compliant, thorough implementation of the OAuth request-signing logic";
homepage = "https://github.com/idan/oauthlib";
license = licenses.bsd3;
maintainers = with maintainers; [ prikhi ];
};
}