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:
parent
ab477542d9
commit
d9b7434055
1 changed files with 5 additions and 4 deletions
|
@ -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 = [ ];
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue