feat: add nextcloud-mcp-server with 20 inlined Python deps #1

Merged
luis merged 29 commits from :main into main 2026-05-28 08:55:26 +02:00
Showing only changes of commit 87e2fa8483 - Show all commits

View File

@@ -6,15 +6,15 @@
}:
let
mkPy = { pname, version, hash, propagatedBuildInputs ? [ ], nativeBuildInputs ? [ ], src, meta ? { } }:
python3Packages.buildPythonPackage {
mkPy = { pname, version, propagatedBuildInputs ? [ ], nativeBuildInputs ? [ ], src, meta ? { }, ... }@args:
python3Packages.buildPythonPackage ({
inherit pname version src;
pyproject = true;
build-system = [ python3Packages.hatchling ];
inherit nativeBuildInputs propagatedBuildInputs;
doCheck = false;
inherit meta;
};
} // builtins.removeAttrs args [ "pname" "version" "propagatedBuildInputs" "nativeBuildInputs" "src" "meta" ]);
# ── 4 packages that work from PyPI ──
pythonvcard4 = python3Packages.buildPythonPackage {