Add task due notify

This commit is contained in:
2026-03-03 14:54:01 +11:00
parent 329703abf0
commit fa4591c6b3
5 changed files with 85 additions and 28 deletions

26
pkgs/autogpt.nix Normal file
View File

@@ -0,0 +1,26 @@
{ lib, buildPythonPackage, fetchFromGitHub, python3Packages }:
buildPythonPackage rec {
pname = "autogpt";
version = "0.5.2";
src = fetchFromGitHub {
owner = "Significant-Gravitas";
repo = "AutoGPT";
rev = "v${version}";
hash = "sha256-0000000000000000000000000000000000000000000000000000"; # NEEDS UPDATE
};
propagatedBuildInputs = with python3Packages; [
openai
langchain
chromadb
sqlalchemy
beautifulsoup4
requests
];
meta = with lib; {
description = "AutoGPT - Autonomous AI agent";
homepage = "https://github.com/Significant-Gravitas/AutoGPT";
license = licenses.mit;
};
}