diff --git a/pkgs/development/python-modules/fastapi-cli/default.nix b/pkgs/development/python-modules/fastapi-cli/default.nix index db270993d0f1..714a27899a26 100644 --- a/pkgs/development/python-modules/fastapi-cli/default.nix +++ b/pkgs/development/python-modules/fastapi-cli/default.nix @@ -3,8 +3,8 @@ buildPythonPackage, fetchFromGitHub, pdm-backend, + rich-toolkit, typer, - fastapi, uvicorn, # checks @@ -15,19 +15,20 @@ let self = buildPythonPackage rec { pname = "fastapi-cli"; - version = "0.0.5"; + version = "0.0.7"; pyproject = true; src = fetchFromGitHub { owner = "tiangolo"; repo = "fastapi-cli"; tag = version; - hash = "sha256-hUS9zkDJJB51X+e31RvyxcGAP8j4oulAPFAvEMPiIn8="; + hash = "sha256-LLk9DMYRqSgiisDfJVP961Blp2u8XLeGDVuDY7IBv/k="; }; build-system = [ pdm-backend ]; dependencies = [ + rich-toolkit typer uvicorn ] ++ uvicorn.optional-dependencies.standard; @@ -55,7 +56,7 @@ let meta = with lib; { description = "Run and manage FastAPI apps from the command line with FastAPI CLI"; homepage = "https://github.com/tiangolo/fastapi-cli"; - changelog = "https://github.com/tiangolo/fastapi-cli/releases/tag/${version}"; + changelog = "https://github.com/tiangolo/fastapi-cli/releases/tag/${src.tag}"; mainProgram = "fastapi"; license = licenses.mit; maintainers = [ ];