mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
python311Packages.open-interpreter: init at 0.2.0
This commit is contained in:
parent
7f5dd771e5
commit
2564922665
@ -1,14 +1,37 @@
|
||||
{ lib
|
||||
, python3
|
||||
, fetchFromGitHub
|
||||
, buildPythonPackage
|
||||
, pythonOlder
|
||||
, pythonRelaxDepsHook
|
||||
, poetry-core
|
||||
|
||||
, appdirs
|
||||
, astor
|
||||
, inquirer
|
||||
, litellm
|
||||
, pyyaml
|
||||
, rich
|
||||
, six
|
||||
, tiktoken
|
||||
, tokentrim
|
||||
, wget
|
||||
, psutil
|
||||
, html2image
|
||||
, ipykernel
|
||||
, jupyter-client
|
||||
, matplotlib
|
||||
, toml
|
||||
, posthog
|
||||
, openai
|
||||
, setuptools
|
||||
}:
|
||||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
buildPythonPackage rec {
|
||||
pname = "open-interpreter";
|
||||
version = "0.2.0";
|
||||
pyproject = true;
|
||||
|
||||
disabled = python3.pkgs.pythonOlder "3.9";
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "KillianLucas";
|
||||
@ -27,11 +50,11 @@ python3.pkgs.buildPythonApplication rec {
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
python3.pkgs.poetry-core
|
||||
python3.pkgs.pythonRelaxDepsHook
|
||||
poetry-core
|
||||
pythonRelaxDepsHook
|
||||
];
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
propagatedBuildInputs = [
|
||||
appdirs
|
||||
astor
|
||||
inquirer
|
@ -11587,7 +11587,7 @@ with pkgs;
|
||||
|
||||
open-ecard = callPackage ../tools/security/open-ecard { };
|
||||
|
||||
open-interpreter = callPackage ../tools/llm/open-interpreter { };
|
||||
open-interpreter = with python3Packages; toPythonApplication open-interpreter;
|
||||
|
||||
openjade = callPackage ../tools/text/sgml/openjade { };
|
||||
|
||||
|
@ -8657,6 +8657,8 @@ self: super: with self; {
|
||||
|
||||
open-garage = callPackage ../development/python-modules/open-garage { };
|
||||
|
||||
open-interpreter = callPackage ../development/python-modules/open-interpreter { };
|
||||
|
||||
open-meteo = callPackage ../development/python-modules/open-meteo { };
|
||||
|
||||
openai-triton = callPackage ../development/python-modules/openai-triton {
|
||||
|
Loading…
Reference in New Issue
Block a user