Merge pull request #301418 from r-ryantm/auto-update/python312Packages.fastapi-sso

python312Packages.fastapi-sso: 0.13.1 -> 0.14.0

authored by Fabian Affolter and committed by GitHub c2f06330 f42b2540

+19 -22
+19 -22
pkgs/development/python-modules/fastapi-sso/default.nix
··· 1 - { lib 2 - , buildPythonPackage 3 - , email-validator 4 - , fastapi 5 - , fetchFromGitHub 6 - , httpx 7 - , oauthlib 8 - , poetry-core 9 - , pydantic 10 - , pylint 11 - , pytest-asyncio 12 - , pytest-xdist 13 - , pytestCheckHook 14 - , pythonOlder 1 + { 2 + lib, 3 + buildPythonPackage, 4 + email-validator, 5 + fastapi, 6 + fetchFromGitHub, 7 + httpx, 8 + oauthlib, 9 + poetry-core, 10 + pydantic, 11 + pylint, 12 + pytest-asyncio, 13 + pytest-xdist, 14 + pytestCheckHook, 15 + pythonOlder, 15 16 }: 16 17 17 18 buildPythonPackage rec { 18 19 pname = "fastapi-sso"; 19 - version = "0.13.1"; 20 + version = "0.14.0"; 20 21 pyproject = true; 21 22 22 23 disabled = pythonOlder "3.8"; ··· 25 26 owner = "tomasvotava"; 26 27 repo = "fastapi-sso"; 27 28 rev = "refs/tags/${version}"; 28 - hash = "sha256-gblxjunXNerbC+7IYkGrO/PJak0MCoxdmWfo7iVeV7g="; 29 + hash = "sha256-JFIVmpKsTaL7SYwamW/8zMWaBampmCTweiNz7zcgbco="; 29 30 }; 30 31 31 32 postPatch = '' 32 33 sed -i "/--cov/d" pyproject.toml 33 34 ''; 34 35 35 - build-system = [ 36 - poetry-core 37 - ]; 36 + build-system = [ poetry-core ]; 38 37 39 38 dependencies = [ 40 39 fastapi ··· 51 50 pytestCheckHook 52 51 ]; 53 52 54 - pythonImportsCheck = [ 55 - "fastapi_sso" 56 - ]; 53 + pythonImportsCheck = [ "fastapi_sso" ]; 57 54 58 55 meta = with lib; { 59 56 description = "FastAPI plugin to enable SSO to most common providers (such as Facebook login, Google login and login via Microsoft Office 365 Account";