Add task due notify
This commit is contained in:
26
pkgs/autogpt.nix
Normal file
26
pkgs/autogpt.nix
Normal 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user