synix/pkgs/freecad-mcp/default.nix
sid b29b0895a5
All checks were successful
Build tests / build-hosts (pull_request) Successful in 3m51s
Flake check / flake-check (pull_request) Successful in 3m50s
update flake. update pkgs. new hp api
2026-04-15 22:23:01 +02:00

37 lines
641 B
Nix

{
lib,
python3,
fetchPypi,
}:
python3.pkgs.buildPythonApplication rec {
pname = "freecad-mcp";
version = "0.1.17";
pyproject = true;
src = fetchPypi {
pname = "freecad_mcp";
inherit version;
hash = "sha256-DugQWGZizIXO27cjzfyidNTyyahN1BTcDNTl4DHWqN0=";
};
build-system = [
python3.pkgs.hatchling
];
dependencies = with python3.pkgs; [
mcp
validators
];
pythonImportsCheck = [
"freecad_mcp"
];
meta = {
description = "Add your description here";
homepage = "https://pypi.org/project/freecad-mcp/";
license = lib.licenses.mit;
mainProgram = "freecad-mcp";
};
}