about summary refs log tree commit diff
path: root/pkgs/applications/misc/twitch-chat-downloader/default.nix
blob: 922c925cbb0c3216734fe7ed0f0f68e6430a86d6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ lib
, buildPythonApplication
, fetchFromGitHub
, iso8601
, progressbar2
, requests
}:

buildPythonApplication rec {
  pname = "twitch-chat-downloader";
  version = "2.5.4";

  # NOTE: Using maintained fork because upstream has stopped working, and it has
  # not been updated in a while.
  # https://github.com/PetterKraabol/Twitch-Chat-Downloader/issues/142
  src = fetchFromGitHub {
    owner = "TheDrHax";
    repo = "twitch-chat-downloader";
    rev = version;
    hash = "sha256-mV60ygrtQa9ZkJ2CImhAV59ckCJ7vJSA9cWkYE2xo1M=";
  };

  propagatedBuildInputs = [
    iso8601
    progressbar2
    requests
  ];

  doCheck = false; # no tests

  pythonImportsCheck = [ "tcd" ];

  meta = with lib; {
    description = "Twitch Chat Downloader";
    mainProgram = "tcd";
    homepage = "https://github.com/TheDrHax/Twitch-Chat-Downloader";
    license = licenses.mit;
    maintainers = with maintainers; [ assistant ];
  };
}