From b105341eb4b00cc398a6eb7f70e0900daaaf480f Mon Sep 17 00:00:00 2001 From: Hythera <87016780+Hythera@users.noreply.github.com> Date: Fri, 26 Dec 2025 12:06:38 +0100 Subject: [PATCH] python3Packages.fastapi-cli: 0.0.8 -> 0.0.20 --- .../development/python-modules/fastapi-cli/default.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pkgs/development/python-modules/fastapi-cli/default.nix b/pkgs/development/python-modules/fastapi-cli/default.nix index aee604b738df..b13bcff26a20 100644 --- a/pkgs/development/python-modules/fastapi-cli/default.nix +++ b/pkgs/development/python-modules/fastapi-cli/default.nix @@ -15,14 +15,14 @@ let self = buildPythonPackage rec { pname = "fastapi-cli"; - version = "0.0.8"; + version = "0.0.20"; pyproject = true; src = fetchFromGitHub { - owner = "tiangolo"; + owner = "fastapi"; repo = "fastapi-cli"; tag = version; - hash = "sha256-7SYsIgRSFZgtIHBC5Ic9Nlh+LtGJDz0Xx1yxMarAuYY="; + hash = "sha256-RTxu6WmKmGMVsQ2izd8j8P+gGbXV91gVjb95JC52e8Q="; }; build-system = [ pdm-backend ]; @@ -58,8 +58,8 @@ let meta = { 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/${src.tag}"; + homepage = "https://github.com/fastapi/fastapi-cli"; + changelog = "https://github.com/fastapi/fastapi-cli/releases/tag/${src.tag}"; mainProgram = "fastapi"; license = lib.licenses.mit; maintainers = [ ];