Merge pull request #187546 from marsam/init-chat-downloader

This commit is contained in:
Sandro 2022-08-21 03:56:08 +02:00 committed by GitHub
commit e03596e19b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 56 additions and 0 deletions

View File

@ -0,0 +1,54 @@
{ lib
, buildPythonPackage
, fetchFromGitHub
, requests
, isodate
, docstring-parser
, colorlog
, websocket-client
, pytestCheckHook
, fetchpatch
}:
buildPythonPackage rec {
pname = "chat-downloader";
version = "0.2.0";
# PyPI tarball is missing files
src = fetchFromGitHub {
owner = "xenova";
repo = "chat-downloader";
rev = "v${version}";
sha256 = "sha256-SVZyDTma6qAgmOz+QsPnudPrX1Eswtc0IKFRx1HnWLY=";
};
patches = [
# Remove argparse from dependencies. https://github.com/xenova/chat-downloader/pull/167
(fetchpatch {
url = "https://github.com/xenova/chat-downloader/commit/cdaca5e3a334c8db1b37bebe191d181ebdfa576c.patch";
sha256 = "sha256-AgH305dJmNRZy23lAf1h40klDE67RSwEL8o2gxX0VGA=";
})
];
propagatedBuildInputs = [
requests
isodate
docstring-parser
colorlog
websocket-client
];
# Tests try to access the network.
doCheck = false;
checkInputs = [ pytestCheckHook ];
pythonImportsCheck = [ "chat_downloader" ];
meta = with lib; {
description = "A simple tool used to retrieve chat messages from livestreams, videos, clips and past broadcasts";
homepage = "https://github.com/xenova/chat-downloader";
license = licenses.mit;
maintainers = with maintainers; [ marsam ];
};
}

View File

@ -1732,6 +1732,8 @@ in {
chart-studio = callPackage ../development/python-modules/chart-studio { }; chart-studio = callPackage ../development/python-modules/chart-studio { };
chat-downloader = callPackage ../development/python-modules/chat-downloader { };
check-manifest = callPackage ../development/python-modules/check-manifest { }; check-manifest = callPackage ../development/python-modules/check-manifest { };
cheetah3 = callPackage ../development/python-modules/cheetah3 { }; cheetah3 = callPackage ../development/python-modules/cheetah3 { };