Merge pull request #305501 from fabaff/shell-genie-refactor

shell-genie: refactor
This commit is contained in:
Fabian Affolter 2024-04-20 13:35:13 +02:00 committed by GitHub
commit 7cf21cf69f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -21,12 +21,15 @@ buildPythonPackage rec {
"typer"
];
nativeBuildInputs = [
build-system = [
poetry-core
];
nativeBuildInputs = [
pythonRelaxDepsHook
];
propagatedBuildInputs = [
dependencies = [
colorama
openai
pyperclip
@ -44,9 +47,9 @@ buildPythonPackage rec {
meta = with lib; {
description = "Describe your shell commands in natural language";
mainProgram = "shell-genie";
homepage = "https://github.com/dylanjcastillo/shell-genie";
license = licenses.mit;
maintainers = with maintainers; [ onny ];
mainProgram = "shell-genie";
};
}