docx
NixOS Configuration CI / Nix Flake Check (push) Failing after 18s

This commit is contained in:
2026-07-13 12:37:11 +02:00
parent 9f9001299c
commit 84bb4f4425
2 changed files with 40 additions and 0 deletions
+1
View File
@@ -8,6 +8,7 @@
zotero-mcp = pkgs.callPackage ./zotero-mcp/package.nix { };
pdf-reader-mcp = pkgs.callPackage ./pdf-reader-mcp/package.nix { };
kindly-web-search-mcp-server = pkgs.callPackage ./kindly-web-search-mcp-server/package.nix { };
docx-mcp = pkgs.callPackage ./docx-mcp/package.nix { };
duckduckgo-mcp-server = pkgs.callPackage ./duckduckgo-mcp-server/package.nix { };
n8n-mcp = pkgs.callPackage ./n8n-mcp/package.nix { };
simple-web-search-mcp = pkgs.callPackage ./simple-web-search-mcp/package.nix { };
+39
View File
@@ -0,0 +1,39 @@
{
lib,
python3Packages,
fetchFromGitHub,
}:
python3Packages.buildPythonApplication rec {
pname = "docx-mcp";
version = "2.0.0-unstable-2026-07-13";
src = fetchFromGitHub {
owner = "Rookie0x80";
repo = "docx-mcp";
rev = "b6188eaa57d2694b8f70217e8f6a15980b22ec16";
hash = "sha256-JjcQjwTiJvO6f0f+iiLgm24Rjms8+xehXHsAD6L+TEY=";
};
pyproject = true;
build-system = with python3Packages; [ setuptools ];
dependencies = with python3Packages; [
python-docx
fastmcp
typing-extensions
];
doCheck = false;
pythonImportsCheck = [ "docx_mcp" ];
meta = with lib; {
description = "MCP server for Microsoft Word .docx operations using python-docx (table-focused)";
homepage = "https://github.com/Rookie0x80/docx-mcp";
license = licenses.mit;
mainProgram = "docx-mcp";
platforms = platforms.all;
maintainers = [ ];
};
}