mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
python312Packages.authlib: 1.3.1 -> 1.3.2 (#338531)
This commit is contained in:
commit
ad68c70022
|
@ -12,27 +12,29 @@
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
requests,
|
requests,
|
||||||
|
setuptools,
|
||||||
starlette,
|
starlette,
|
||||||
werkzeug,
|
werkzeug,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
buildPythonPackage rec {
|
buildPythonPackage rec {
|
||||||
pname = "authlib";
|
pname = "authlib";
|
||||||
version = "1.3.1";
|
version = "1.3.2";
|
||||||
format = "setuptools";
|
pyproject = true;
|
||||||
|
|
||||||
disabled = pythonOlder "3.7";
|
disabled = pythonOlder "3.8";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "lepture";
|
owner = "lepture";
|
||||||
repo = "authlib";
|
repo = "authlib";
|
||||||
rev = "refs/tags/v${version}";
|
rev = "refs/tags/v${version}";
|
||||||
hash = "sha256-5AZca4APi2gLwj/AHtXOPzIFnJkCmK9mDV0bAAvIx8A=";
|
hash = "sha256-gaFnai5QzHhnyn73JB+QzybaolLWC9barBFdnlEMyMU=";
|
||||||
};
|
};
|
||||||
|
|
||||||
propagatedBuildInputs = [
|
build-system = [ setuptools ];
|
||||||
|
|
||||||
|
dependencies = [
|
||||||
cryptography
|
cryptography
|
||||||
requests
|
|
||||||
];
|
];
|
||||||
|
|
||||||
nativeCheckInputs = [
|
nativeCheckInputs = [
|
||||||
|
@ -43,6 +45,7 @@ buildPythonPackage rec {
|
||||||
mock
|
mock
|
||||||
pytest-asyncio
|
pytest-asyncio
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
|
requests
|
||||||
starlette
|
starlette
|
||||||
werkzeug
|
werkzeug
|
||||||
];
|
];
|
||||||
|
|
|
@ -46,6 +46,7 @@
|
||||||
peewee,
|
peewee,
|
||||||
pony,
|
pony,
|
||||||
pytestCheckHook,
|
pytestCheckHook,
|
||||||
|
requests,
|
||||||
zxcvbn,
|
zxcvbn,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -114,6 +115,7 @@ buildPythonPackage rec {
|
||||||
peewee
|
peewee
|
||||||
pony
|
pony
|
||||||
pytestCheckHook
|
pytestCheckHook
|
||||||
|
requests
|
||||||
zxcvbn
|
zxcvbn
|
||||||
]
|
]
|
||||||
++ optional-dependencies.babel
|
++ optional-dependencies.babel
|
||||||
|
|
|
@ -9,8 +9,8 @@
|
||||||
httpx,
|
httpx,
|
||||||
pydantic,
|
pydantic,
|
||||||
pythonOlder,
|
pythonOlder,
|
||||||
|
requests,
|
||||||
setuptools-scm,
|
setuptools-scm,
|
||||||
tqdm,
|
|
||||||
validators,
|
validators,
|
||||||
}:
|
}:
|
||||||
|
|
||||||
|
@ -43,7 +43,7 @@ buildPythonPackage rec {
|
||||||
grpcio-tools
|
grpcio-tools
|
||||||
httpx
|
httpx
|
||||||
pydantic
|
pydantic
|
||||||
tqdm
|
requests
|
||||||
validators
|
validators
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
|
@ -46,6 +46,7 @@ python.pkgs.buildPythonApplication rec {
|
||||||
];
|
];
|
||||||
|
|
||||||
pythonRelaxDeps = [
|
pythonRelaxDeps = [
|
||||||
|
"authlib"
|
||||||
"flask-limiter"
|
"flask-limiter"
|
||||||
"gunicorn"
|
"gunicorn"
|
||||||
"pyjwt"
|
"pyjwt"
|
||||||
|
|
Loading…
Reference in a new issue