nixpkgs/pkgs/applications/misc/chatblade/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
945 B
Nix
Raw Permalink Normal View History

{ lib, python3Packages, fetchPypi }:
2023-04-05 13:49:17 +02:00
python3Packages.buildPythonApplication rec {
pname = "chatblade";
2024-03-13 16:21:49 +01:00
version = "0.4.0";
2023-04-05 13:49:17 +02:00
format = "setuptools";
src = fetchPypi {
2023-04-05 13:49:17 +02:00
inherit pname version;
2024-03-13 16:21:49 +01:00
sha256 = "sha256-AjE+1MkSkZOtEUPKEPBKQ3n+aOB8cwsorBpL5skNskU=";
2023-04-05 13:49:17 +02:00
};
doCheck = false; # there are no tests
pythonImportsCheck = [ "chatblade" ];
propagatedBuildInputs = with python3Packages; [
aiohttp
aiosignal
async-timeout
attrs
certifi
charset-normalizer
frozenlist
idna
markdown-it-py
mdurl
multidict
openai
platformdirs
pygments
pyyaml
regex
requests
rich
tiktoken
tqdm
urllib3
yarl
];
meta = with lib; {
homepage = "https://github.com/npiv/chatblade/";
description = "A CLI Swiss Army Knife for ChatGPT";
mainProgram = "chatblade";
2023-04-05 13:49:17 +02:00
license = licenses.gpl3Only;
maintainers = with maintainers; [ deejayem ];
};
}