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
941 B
Nix
Raw Normal View History

{ lib, python3Packages, fetchPypi }:
2023-04-05 11:49:17 +00:00
python3Packages.buildPythonApplication rec {
pname = "chatblade";
2024-03-13 15:21:49 +00:00
version = "0.4.0";
2023-04-05 11:49:17 +00:00
format = "setuptools";
src = fetchPypi {
2023-04-05 11:49:17 +00:00
inherit pname version;
hash = "sha256-AjE+1MkSkZOtEUPKEPBKQ3n+aOB8cwsorBpL5skNskU=";
2023-04-05 11:49:17 +00: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 = "CLI Swiss Army Knife for ChatGPT";
mainProgram = "chatblade";
2023-04-05 11:49:17 +00:00
license = licenses.gpl3Only;
maintainers = with maintainers; [ deejayem ];
};
}