python312Packages.fastapi-mcp: init at 0.3.4
This commit is contained in:
@@ -0,0 +1,74 @@
|
||||
{
|
||||
lib,
|
||||
buildPythonPackage,
|
||||
fetchFromGitHub,
|
||||
|
||||
# build-system
|
||||
hatchling,
|
||||
tomli,
|
||||
|
||||
# dependencies
|
||||
fastapi,
|
||||
httpx,
|
||||
mcp,
|
||||
pydantic,
|
||||
pydantic-settings,
|
||||
requests,
|
||||
rich,
|
||||
typer,
|
||||
uvicorn,
|
||||
|
||||
# tests
|
||||
coverage,
|
||||
pytest-asyncio,
|
||||
pytest-cov-stub,
|
||||
pytestCheckHook,
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "fastapi-mcp";
|
||||
version = "0.3.4";
|
||||
pyproject = true;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tadata-org";
|
||||
repo = "fastapi_mcp";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-t6p/jXQjbhUmIlwoqszRj3GGSrLS0Gcoh1BtizNaw8o=";
|
||||
};
|
||||
|
||||
build-system = [
|
||||
hatchling
|
||||
tomli
|
||||
];
|
||||
|
||||
dependencies = [
|
||||
fastapi
|
||||
httpx
|
||||
mcp
|
||||
pydantic
|
||||
pydantic-settings
|
||||
requests
|
||||
rich
|
||||
tomli
|
||||
typer
|
||||
uvicorn
|
||||
];
|
||||
|
||||
pythonImportsCheck = [ "fastapi_mcp" ];
|
||||
|
||||
nativeCheckInputs = [
|
||||
coverage
|
||||
pytest-asyncio
|
||||
pytest-cov-stub
|
||||
pytestCheckHook
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Expose your FastAPI endpoints as Model Context Protocol (MCP) tools, with Auth";
|
||||
homepage = "https://github.com/tadata-org/fastapi_mcp";
|
||||
changelog = "https://github.com/tadata-org/fastapi_mcp/blob/v${version}/CHANGELOG.md";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ GaetanLepage ];
|
||||
};
|
||||
}
|
||||
@@ -4803,6 +4803,8 @@ self: super: with self; {
|
||||
|
||||
fastapi-mail = callPackage ../development/python-modules/fastapi-mail { };
|
||||
|
||||
fastapi-mcp = callPackage ../development/python-modules/fastapi-mcp { };
|
||||
|
||||
fastapi-sso = callPackage ../development/python-modules/fastapi-sso { };
|
||||
|
||||
fastavro = callPackage ../development/python-modules/fastavro { };
|
||||
|
||||
Reference in New Issue
Block a user