0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-14 06:00:33 +03:00

python3Packages.fastapi-cli: 0.0.5 -> 0.0.7

https://github.com/tiangolo/fastapi-cli/releases/tag/0.0.7
This commit is contained in:
Martin Weinelt 2025-01-19 21:15:21 +01:00
parent ab477542d9
commit d9b7434055
No known key found for this signature in database
GPG key ID: 87C1E9888F856759

View file

@ -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 = [ ];