Files
nixpkgs/pkgs/development/python-modules/llm-templates-fabric/default.nix
T
2025-11-27 17:27:37 +00:00

38 lines
875 B
Nix

{
lib,
buildPythonPackage,
fetchFromGitHub,
setuptools,
llm,
llm-templates-fabric,
}:
buildPythonPackage rec {
pname = "llm-templates-fabric";
version = "0.2.1";
pyproject = true;
src = fetchFromGitHub {
owner = "simonw";
repo = "llm-templates-fabric";
tag = version;
hash = "sha256-zF7YTJavLM+AFxZ2TZWwWGNwLGgQzUXx4WoO6MnTRZE=";
};
build-system = [ setuptools ];
dependencies = [ llm ];
pythonImportsCheck = [ "llm_templates_fabric" ];
passthru.tests = llm.mkPluginTest llm-templates-fabric;
meta = {
description = "Load LLM templates from Fabric";
homepage = "https://github.com/simonw/llm-templates-fabric";
changelog = "https://github.com/simonw/llm-templates-fabric/releases/tag/${version}/CHANGELOG.md";
license = lib.licenses.asl20;
maintainers = with lib.maintainers; [ philiptaron ];
};
}