python3Packages.oauthlib: 3.1.1 -> 3.2.0

This commit is contained in:
Fabian Affolter 2022-02-28 10:14:37 +01:00
parent c1557eb7f1
commit dc17b7f725

View file

@ -1,28 +1,26 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
# propagates
, blinker
, buildPythonPackage
, cryptography
, pyjwt
# test
, fetchFromGitHub
, mock
, pyjwt
, pytestCheckHook
, pythonOlder
}:
buildPythonPackage rec {
pname = "oauthlib";
version = "3.1.1";
version = "3.2.0";
format = "setuptools";
# master supports pyjwt==1.7.1
disabled = pythonOlder "3.7";
src = fetchFromGitHub {
owner = pname;
repo = pname;
rev = "v${version}";
hash = "sha256:1bgxpzh11i0x7h9py3a29cz5z714b3p498b62znnn5ciy0cr80sv";
hash = "sha256-41JFURG8G8BjlAlNu2+lbj84XR/trAk1U5OPYxPq+5M=";
};
propagatedBuildInputs = [
@ -36,10 +34,14 @@ buildPythonPackage rec {
pytestCheckHook
];
pythonImportsCheck = [
"oauthlib"
];
meta = with lib; {
description = "Generic, spec-compliant, thorough implementation of the OAuth request-signing logic";
homepage = "https://github.com/idan/oauthlib";
description = "A generic, spec-compliant, thorough implementation of the OAuth request-signing logic";
maintainers = with maintainers; [ prikhi ];
license = licenses.bsd3;
maintainers = with maintainers; [ prikhi ];
};
}