python3Packages.fastapi-cli: 0.0.4 -> 0.0.5
https://github.com/tiangolo/fastapi-cli/releases/tag/0.0.5
This commit is contained in:
@@ -13,25 +13,27 @@
|
||||
|
||||
let self = buildPythonPackage rec {
|
||||
pname = "fastapi-cli";
|
||||
version = "0.0.4";
|
||||
version = "0.0.5";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tiangolo";
|
||||
repo = "fastapi-cli";
|
||||
rev = version;
|
||||
hash = "sha256-eWvZn7ZeLnQZAvGOzY77o6oO5y+QV2cx+peBov9YpJE=";
|
||||
rev = "refs/tags/${version}";
|
||||
hash = "sha256-hUS9zkDJJB51X+e31RvyxcGAP8j4oulAPFAvEMPiIn8=";
|
||||
};
|
||||
|
||||
build-system = [ pdm-backend ];
|
||||
|
||||
dependencies = [ typer ];
|
||||
dependencies = [
|
||||
typer
|
||||
uvicorn
|
||||
] ++ uvicorn.optional-dependencies.standard;
|
||||
|
||||
optional-dependencies = {
|
||||
standard = [
|
||||
fastapi
|
||||
uvicorn
|
||||
];
|
||||
] ++ uvicorn.optional-dependencies.standard;
|
||||
};
|
||||
|
||||
doCheck = false;
|
||||
|
||||
Reference in New Issue
Block a user