3 buildPythonApplication,
10 buildPythonApplication rec {
11 pname = "twitch-chat-downloader";
14 # NOTE: Using maintained fork because upstream has stopped working, and it has
15 # not been updated in a while.
16 # https://github.com/PetterKraabol/Twitch-Chat-Downloader/issues/142
17 src = fetchFromGitHub {
19 repo = "twitch-chat-downloader";
21 hash = "sha256-mV60ygrtQa9ZkJ2CImhAV59ckCJ7vJSA9cWkYE2xo1M=";
25 # Update client ID for Twitch changes
26 # See: <https://github.com/TheDrHax/Twitch-Chat-Downloader/pull/16>
27 substituteInPlace tcd/example.settings.json \
28 --replace-fail jzkbprff40iqj646a697cyrvl0zt2m6 kd1unb4b3q4t58fwlpcbzcbnm76a8fp
31 propagatedBuildInputs = [
37 doCheck = false; # no tests
39 pythonImportsCheck = [ "tcd" ];
42 description = "Twitch Chat Downloader";
44 homepage = "https://github.com/TheDrHax/Twitch-Chat-Downloader";
45 license = licenses.mit;
46 maintainers = with maintainers; [ assistant ];