mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-24 14:43:37 +00:00
46 lines
810 B
Nix
46 lines
810 B
Nix
{ lib
|
|
, python3
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
with python3.pkgs;
|
|
|
|
buildPythonPackage rec {
|
|
pname = "shell-genie";
|
|
version = "0.2.8";
|
|
format = "pyproject";
|
|
|
|
src = fetchPypi {
|
|
pname = "shell_genie";
|
|
inherit version;
|
|
hash = "sha256-6miqTjiGLK7r6evfchwuAXTHj+JwoH/CqgRoa5+jDJI=";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
poetry-core
|
|
];
|
|
|
|
propagatedBuildInputs = [
|
|
colorama
|
|
openai
|
|
pyperclip
|
|
rich
|
|
shellingham
|
|
typer
|
|
] ++ typer.optional-dependencies.all;
|
|
|
|
# No tests available
|
|
doCheck = false;
|
|
|
|
pythonImportsCheck = [
|
|
"shell_genie"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Describe your shell commands in natural language";
|
|
homepage = "https://github.com/dylanjcastillo/shell-genie";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ onny ];
|
|
};
|
|
}
|