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 15 }: 16 17 buildPythonPackage rec { 18 pname = "fastapi-sso"; 19 - version = "0.13.1"; 20 pyproject = true; 21 22 disabled = pythonOlder "3.8"; ··· 25 owner = "tomasvotava"; 26 repo = "fastapi-sso"; 27 rev = "refs/tags/${version}"; 28 - hash = "sha256-gblxjunXNerbC+7IYkGrO/PJak0MCoxdmWfo7iVeV7g="; 29 }; 30 31 postPatch = '' 32 sed -i "/--cov/d" pyproject.toml 33 ''; 34 35 - build-system = [ 36 - poetry-core 37 - ]; 38 39 dependencies = [ 40 fastapi ··· 51 pytestCheckHook 52 ]; 53 54 - pythonImportsCheck = [ 55 - "fastapi_sso" 56 - ]; 57 58 meta = with lib; { 59 description = "FastAPI plugin to enable SSO to most common providers (such as Facebook login, Google login and login via Microsoft Office 365 Account";
··· 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, 16 }: 17 18 buildPythonPackage rec { 19 pname = "fastapi-sso"; 20 + version = "0.14.0"; 21 pyproject = true; 22 23 disabled = pythonOlder "3.8"; ··· 26 owner = "tomasvotava"; 27 repo = "fastapi-sso"; 28 rev = "refs/tags/${version}"; 29 + hash = "sha256-JFIVmpKsTaL7SYwamW/8zMWaBampmCTweiNz7zcgbco="; 30 }; 31 32 postPatch = '' 33 sed -i "/--cov/d" pyproject.toml 34 ''; 35 36 + build-system = [ poetry-core ]; 37 38 dependencies = [ 39 fastapi ··· 50 pytestCheckHook 51 ]; 52 53 + pythonImportsCheck = [ "fastapi_sso" ]; 54 55 meta = with lib; { 56 description = "FastAPI plugin to enable SSO to most common providers (such as Facebook login, Google login and login via Microsoft Office 365 Account";