Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
51 lines
1.0 KiB
Nix
51 lines
1.0 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildPythonPackage,
|
|
django,
|
|
djangorestframework,
|
|
inflection,
|
|
mcp,
|
|
uritemplate,
|
|
poetry-core,
|
|
}:
|
|
|
|
buildPythonPackage rec {
|
|
pname = "django-mcp-server";
|
|
version = "0.5.6";
|
|
pyproject = true;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "omarbenhamid";
|
|
repo = "django-mcp-server";
|
|
tag = "v${version}";
|
|
hash = "sha256-HR4AzeDT/oWJe/exsV5AqwSebJPGT/vlzuk3qTgVb/M=";
|
|
};
|
|
|
|
build-system = [ poetry-core ];
|
|
|
|
dependencies = [
|
|
django
|
|
djangorestframework
|
|
inflection
|
|
mcp
|
|
uritemplate
|
|
];
|
|
|
|
postFixup = ''
|
|
export PYTHONPATH="$PWD/examples:$PYTHONPATH"
|
|
export DJANGO_SETTINGS_MODULE=mcpexample.mcpexample.settings
|
|
'';
|
|
|
|
pythonImportsCheck = [ "mcp_server" ];
|
|
|
|
doCheck = false; # Needs to run both test server and client simultaneously
|
|
|
|
meta = {
|
|
description = "Django MCP Server implementation";
|
|
homepage = "https://github.com/omarbenhamid/django-mcp-server";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ mrmebelman ];
|
|
};
|
|
}
|