Files
nixpkgs/pkgs/development/python-modules/chat-downloader/default.nix
T
Ihar Hrachyshka 567e8dfd8e treewide: clean up 'meta = with' pattern
This commit was created by a combination of scripts and tools:
- an ast-grep script to prefix things in meta with `lib.`,
- a modified nixf-diagnose / nixf combination to remove unused `with
lib;`, and
- regular nixfmt.

Co-authored-by: Wolfgang Walther <walther@technowledgy.de>
2025-12-10 18:09:49 +01:00

47 lines
996 B
Nix

{
lib,
buildPythonPackage,
fetchPypi,
requests,
isodate,
docstring-parser,
colorlog,
websocket-client,
pytestCheckHook,
}:
buildPythonPackage rec {
pname = "chat-downloader";
version = "0.2.8";
format = "setuptools";
src = fetchPypi {
inherit version pname;
hash = "sha256-WBasBhefgRkOdMdz2K/agvS+cY6m3/33wiu+Jl4d1Cg=";
};
propagatedBuildInputs = [
requests
isodate
docstring-parser
colorlog
websocket-client
];
# Tests try to access the network.
doCheck = false;
nativeCheckInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "chat_downloader" ];
meta = {
description = "Simple tool used to retrieve chat messages from livestreams, videos, clips and past broadcasts";
mainProgram = "chat_downloader";
homepage = "https://github.com/xenova/chat-downloader";
changelog = "https://github.com/xenova/chat-downloader/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ ];
};
}