27 lines
652 B
Nix
27 lines
652 B
Nix
{ 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;
|
|
};
|
|
}
|