lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

python313Packages.fastapi-sso: 0.17.0 -> 0.18.0

Changelog: https://github.com/tomasvotava/fastapi-sso/releases/tag/0.18.0

+8 -10
+8 -10
pkgs/development/python-modules/fastapi-sso/default.nix
··· 8 8 oauthlib, 9 9 poetry-core, 10 10 pydantic, 11 - pylint, 11 + pyjwt, 12 + pytest-cov-stub, 12 13 pytest-asyncio, 13 14 pytest-xdist, 14 15 pytestCheckHook, ··· 17 18 18 19 buildPythonPackage rec { 19 20 pname = "fastapi-sso"; 20 - version = "0.17.0"; 21 + version = "0.18.0"; 21 22 pyproject = true; 22 23 23 - disabled = pythonOlder "3.8"; 24 + disabled = pythonOlder "3.11"; 24 25 25 26 src = fetchFromGitHub { 26 27 owner = "tomasvotava"; 27 28 repo = "fastapi-sso"; 28 29 tag = version; 29 - hash = "sha256-CkYAF2GmVCooyHt3Tua6ClYMbgyLosqSa8z/zkV2eIE="; 30 + hash = "sha256-591+7Jjg3Pb0qXZsj4tEk8lHqxAzWrs5GO92jFJ4Qmo="; 30 31 }; 31 32 32 - postPatch = '' 33 - sed -i "/--cov/d" pyproject.toml 34 - ''; 35 - 36 33 build-system = [ poetry-core ]; 37 34 38 35 dependencies = [ ··· 40 37 httpx 41 38 oauthlib 42 39 pydantic 43 - pylint 44 - ]; 40 + pyjwt 41 + ] ++ pydantic.optional-dependencies.email; 45 42 46 43 nativeCheckInputs = [ 47 44 email-validator 48 45 pytest-asyncio 46 + pytest-cov-stub 49 47 pytest-xdist 50 48 pytestCheckHook 51 49 ];